diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5dcbd11f..c1962223 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.7" + rev: "v0.9.9" hooks: - id: ruff args: ["--fix", "--show-fixes"] diff --git a/docs/pages/guides/coverage.md b/docs/pages/guides/coverage.md index 1d70b949..ec1c3bd8 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.3.1 + uses: codecov/codecov-action@v5.4.0 with: token: ${{ secrets.CODECOV_TOKEN }} ``` diff --git a/docs/pages/guides/gha_pure.md b/docs/pages/guides/gha_pure.md index 241c4759..873ecaf3 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.2.0 + uses: actions/attest-build-provenance@v2.2.2 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.2.0 + uses: actions/attest-build-provenance@v2.2.2 with: subject-path: "dist/*" diff --git a/docs/pages/guides/gha_wheels.md b/docs/pages/guides/gha_wheels.md index 5ea12f84..5a32034a 100644 --- a/docs/pages/guides/gha_wheels.md +++ b/docs/pages/guides/gha_wheels.md @@ -114,7 +114,7 @@ build_wheels: fetch-depth: 0 submodules: true - - uses: pypa/cibuildwheel@v2.22 + - uses: pypa/cibuildwheel@v2.23 - name: Upload wheels uses: actions/upload-artifact@v4 @@ -178,7 +178,7 @@ upload_all: merge-multiple: true - name: Generate artifact attestations - uses: actions/attest-build-provenance@v2.2.0 + uses: actions/attest-build-provenance@v2.2.2 with: subject-path: "dist/*" diff --git a/docs/pages/guides/style.md b/docs/pages/guides/style.md index cb7096d4..8a2219a3 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.7" + rev: "v0.9.9" 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.7" + rev: "v0.9.9" hooks: - id: ruff args: ["--fix", "--show-fixes"] @@ -463,7 +463,7 @@ pre-commit config will work: ```yaml - repo: https://github.com/PyCQA/isort - rev: "6.0.0" + rev: "6.0.1" hooks: - id: isort ``` diff --git a/{{cookiecutter.project_name}}/.github/workflows/ci.yml b/{{cookiecutter.project_name}}/.github/workflows/ci.yml index 87c443e7..64fb702b 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.3.1 + uses: codecov/codecov-action@v5.4.0 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 946187f6..c6c355e8 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.2.0 + uses: actions/attest-build-provenance@v2.2.2 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 fe57e909..1830d366 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 %} @@ -48,7 +48,7 @@ jobs: with: fetch-depth: 0 - - uses: pypa/cibuildwheel@v2.22 + - uses: pypa/cibuildwheel@v2.23 - name: Upload wheels uses: actions/upload-artifact@v4 @@ -74,7 +74,7 @@ jobs: merge-multiple: true - name: Generate artifact attestations - uses: actions/attest-build-provenance@v2.2.0 + uses: actions/attest-build-provenance@v2.2.2 with: subject-path: "dist/*" diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index 48e39bf6..674ccae8 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.7" + rev: "v0.9.9" hooks: - id: ruff args: ["--fix", "--show-fixes"]