diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bc07d324..e35b2d56 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.15.7" + rev: "v0.15.8" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] diff --git a/docs/pages/guides/coverage.md b/docs/pages/guides/coverage.md index edcf0b38..d1469897 100644 --- a/docs/pages/guides/coverage.md +++ b/docs/pages/guides/coverage.md @@ -229,7 +229,7 @@ enough for a simple testing suite, can be written as follows: ```yaml - name: Upload coverage report - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} ``` diff --git a/docs/pages/guides/gha_basic.md b/docs/pages/guides/gha_basic.md index 659f03d8..183ff6db 100644 --- a/docs/pages/guides/gha_basic.md +++ b/docs/pages/guides/gha_basic.md @@ -678,7 +678,7 @@ configure Pages. ```yaml - name: Setup Pages id: pages - uses: actions/configure-pages@v5 + uses: actions/configure-pages@v6 ``` {% raw %} @@ -715,7 +715,7 @@ deploy: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 ``` {% endraw %} diff --git a/docs/pages/guides/style.md b/docs/pages/guides/style.md index f580c571..85a07619 100644 --- a/docs/pages/guides/style.md +++ b/docs/pages/guides/style.md @@ -158,7 +158,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.15.7" + rev: "v0.15.8" hooks: # id: ruff-check would go here if using both - id: ruff-format @@ -248,7 +248,7 @@ pre-commit hook. ```yaml - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.15.7" + rev: "v0.15.8" hooks: - id: ruff-check args: ["--fix", "--show-fixes"] @@ -884,7 +884,7 @@ following pre-commit config: ```yaml - repo: https://github.com/pre-commit/mirrors-clang-format - rev: "v22.1.1" + rev: "v22.1.2" hooks: - id: clang-format types_or: [c++, c, cuda] @@ -961,7 +961,7 @@ schemas, and you can load them via URL. It work on JSON, YAML, and TOML. ```yaml - repo: https://github.com/python-jsonschema/check-jsonschema - rev: "0.37.0" + rev: "0.37.1" hooks: - id: check-dependabot - id: check-github-workflows diff --git a/{{cookiecutter.project_name}}/.github/workflows/ci.yml b/{{cookiecutter.project_name}}/.github/workflows/ci.yml index ed9e0749..6b2eca59 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_name}}/.github/workflows/ci.yml @@ -86,7 +86,7 @@ jobs: --durations=20 - name: Upload coverage report - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %} diff --git a/{{cookiecutter.project_name}}/.pre-commit-config.yaml b/{{cookiecutter.project_name}}/.pre-commit-config.yaml index cc1475c7..2b0caa31 100644 --- a/{{cookiecutter.project_name}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_name}}/.pre-commit-config.yaml @@ -43,7 +43,7 @@ repos: args: [--prose-wrap=always] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.15.7" + rev: "v0.15.8" hooks: - id: ruff-check args: ["--fix"] @@ -52,7 +52,7 @@ repos: {%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %} - repo: https://github.com/pre-commit/mirrors-clang-format - rev: "v22.1.1" + rev: "v22.1.2" hooks: - id: clang-format types_or: [c++, c, cuda] @@ -105,7 +105,7 @@ repos: additional_dependencies: ["validate-pyproject-schema-store[all]"] - repo: https://github.com/python-jsonschema/check-jsonschema - rev: "0.37.0" + rev: "0.37.1" hooks: {%- if cookiecutter.__ci == "github" %} - id: check-dependabot