diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 678c4117..bd4d44f0 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -69,7 +69,7 @@ jobs: retention-days: 30 - name: Setup Pages - uses: actions/configure-pages@v4 + uses: actions/configure-pages@v5 if: github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main') - name: Upload artifact diff --git a/.github/workflows/packager.yml b/.github/workflows/packager.yml index 0e8ac4ed..d0d67b8c 100644 --- a/.github/workflows/packager.yml +++ b/.github/workflows/packager.yml @@ -143,7 +143,7 @@ jobs: git add ${{ env.PROJECT_FOLDER }}/ - name: Create GitHub Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: fail_on_unmatched_files: true generate_release_notes: true diff --git a/.gitignore b/.gitignore index 1deb7766..02eec5cd 100644 --- a/.gitignore +++ b/.gitignore @@ -134,6 +134,7 @@ dmypy.json # Custom ################################### # ########################################## +qtribu/gui/*.db *.qm *.zip diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b369c983..b2a6c1d9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,14 +17,14 @@ repos: - id: trailing-whitespace args: [--markdown-linebreak-ext=md] - - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: "v0.1.11" + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: "v0.3.5" hooks: - id: ruff args: ["--fix-only", "--target-version=py39"] - repo: https://github.com/psf/black - rev: 23.12.1 + rev: 24.3.0 hooks: - id: black args: ["--target-version=py39"]