diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b5aea9c3..3c1b177b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: additional_dependencies: [black==24.*] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.9.2" + rev: "v0.9.3" hooks: - id: ruff args: ["--fix", "--show-fixes"] @@ -66,7 +66,7 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/codespell-project/codespell - rev: "v2.3.0" + rev: "v2.4.1" hooks: - id: codespell exclude: ^Gemfile\.lock$ diff --git a/docs/pages/guides/coverage.md b/docs/pages/guides/coverage.md index 4b487e5e..1d70b949 100644 --- a/docs/pages/guides/coverage.md +++ b/docs/pages/guides/coverage.md @@ -91,7 +91,7 @@ enough for a simple testing suite, can be written as follows: ```yaml - name: Upload coverage report - uses: codecov/codecov-action@v5.1.2 + uses: codecov/codecov-action@v5.3.1 with: token: ${{ secrets.CODECOV_TOKEN }} ``` diff --git a/docs/pages/guides/gha_pure.md b/docs/pages/guides/gha_pure.md index ead94245..241c4759 100644 --- a/docs/pages/guides/gha_pure.md +++ b/docs/pages/guides/gha_pure.md @@ -154,7 +154,7 @@ publish: path: dist - name: Generate artifact attestation for sdist and wheel - uses: actions/attest-build-provenance@v2.1.0 + uses: actions/attest-build-provenance@v2.2.0 with: subject-path: "dist/*" @@ -252,7 +252,7 @@ jobs: path: dist - name: Generate artifact attestation for sdist and wheel - uses: actions/attest-build-provenance@v2.1.0 + uses: actions/attest-build-provenance@v2.2.0 with: subject-path: "dist/*" diff --git a/docs/pages/guides/gha_wheels.md b/docs/pages/guides/gha_wheels.md index 49a2a95e..5ea12f84 100644 --- a/docs/pages/guides/gha_wheels.md +++ b/docs/pages/guides/gha_wheels.md @@ -178,7 +178,7 @@ upload_all: merge-multiple: true - name: Generate artifact attestations - uses: actions/attest-build-provenance@v2.1.0 + uses: actions/attest-build-provenance@v2.2.0 with: subject-path: "dist/*" diff --git a/docs/pages/guides/style.md b/docs/pages/guides/style.md index ac8f2aa5..1ecd0a50 100644 --- a/docs/pages/guides/style.md +++ b/docs/pages/guides/style.md @@ -111,7 +111,7 @@ Here is the snippet to add the formatter to your `.pre-commit-config.yml` ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.9.2" + rev: "v0.9.3" hooks: # id: ruff would go here if using both - id: ruff-format @@ -201,7 +201,7 @@ pre-commit hook. ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.9.2" + rev: "v0.9.3" hooks: - id: ruff args: ["--fix", "--show-fixes"] @@ -663,7 +663,7 @@ than a list of "valid" words. To use: ```yaml - repo: https://github.com/codespell-project/codespell - rev: "v2.3.0" + rev: "v2.4.1" hooks: - id: codespell args: ["-L", "sur,nd"] diff --git a/{{cookiecutter.project_name}}/.github/workflows/ci.yml b/{{cookiecutter.project_name}}/.github/workflows/ci.yml index efed99d7..87c443e7 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_name}}/.github/workflows/ci.yml @@ -74,6 +74,6 @@ jobs: --durations=20 - name: Upload coverage report - uses: codecov/codecov-action@v5.1.2 + uses: codecov/codecov-action@v5.3.1 with: token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %} diff --git a/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type!='compiled' %}cd.yml{% endif %} b/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type!='compiled' %}cd.yml{% endif %} index 8b9448a3..946187f6 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type!='compiled' %}cd.yml{% endif %} +++ b/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type!='compiled' %}cd.yml{% endif %} @@ -49,7 +49,7 @@ jobs: path: dist - name: Generate artifact attestation for sdist and wheel - uses: actions/attest-build-provenance@v2.1.0 + uses: actions/attest-build-provenance@v2.2.0 with: subject-path: "dist/*" diff --git a/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} b/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} index b6f39a66..fe57e909 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} +++ b/{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %} @@ -74,7 +74,7 @@ jobs: merge-multiple: true - name: Generate artifact attestations - uses: actions/attest-build-provenance@v2.1.0 + uses: actions/attest-build-provenance@v2.2.0 with: subject-path: "dist/*" diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index 9eef0756..51106617 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -42,7 +42,7 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.9.2" + rev: "v0.9.3" hooks: - id: ruff args: ["--fix", "--show-fixes"] @@ -68,7 +68,7 @@ repos: - pytest - repo: https://github.com/codespell-project/codespell - rev: "v2.3.0" + rev: "v2.4.1" hooks: - id: codespell