Skip to content

Commit 0f4958a

Browse files
chore(deps): bump versions (#762)
[create-pull-request] automated change Co-authored-by: scientific-python-pr-tokenbot[bot] <181030687+scientific-python-pr-tokenbot[bot]@users.noreply.github.com>
1 parent bdb0908 commit 0f4958a

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
additional_dependencies: [black==24.*]
3030

3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: "v0.15.7"
32+
rev: "v0.15.8"
3333
hooks:
3434
- id: ruff-check
3535
args: ["--fix", "--show-fixes"]

docs/pages/guides/coverage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ enough for a simple testing suite, can be written as follows:
229229

230230
```yaml
231231
- name: Upload coverage report
232-
uses: codecov/codecov-action@v5
232+
uses: codecov/codecov-action@v6
233233
with:
234234
token: ${{ secrets.CODECOV_TOKEN }}
235235
```

docs/pages/guides/gha_basic.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ configure Pages.
678678
```yaml
679679
- name: Setup Pages
680680
id: pages
681-
uses: actions/configure-pages@v5
681+
uses: actions/configure-pages@v6
682682
```
683683

684684
{% raw %}
@@ -715,7 +715,7 @@ deploy:
715715
steps:
716716
- name: Deploy to GitHub Pages
717717
id: deployment
718-
uses: actions/deploy-pages@v4
718+
uses: actions/deploy-pages@v5
719719
```
720720

721721
{% endraw %}

docs/pages/guides/style.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Here is the snippet to add the formatter to your `.pre-commit-config.yml`
158158

159159
```yaml
160160
- repo: https://github.com/astral-sh/ruff-pre-commit
161-
rev: "v0.15.7"
161+
rev: "v0.15.8"
162162
hooks:
163163
# id: ruff-check would go here if using both
164164
- id: ruff-format
@@ -248,7 +248,7 @@ pre-commit hook.
248248
249249
```yaml
250250
- repo: https://github.com/astral-sh/ruff-pre-commit
251-
rev: "v0.15.7"
251+
rev: "v0.15.8"
252252
hooks:
253253
- id: ruff-check
254254
args: ["--fix", "--show-fixes"]
@@ -884,7 +884,7 @@ following pre-commit config:
884884

885885
```yaml
886886
- repo: https://github.com/pre-commit/mirrors-clang-format
887-
rev: "v22.1.1"
887+
rev: "v22.1.2"
888888
hooks:
889889
- id: clang-format
890890
types_or: [c++, c, cuda]
@@ -961,7 +961,7 @@ schemas, and you can load them via URL. It work on JSON, YAML, and TOML.
961961

962962
```yaml
963963
- repo: https://github.com/python-jsonschema/check-jsonschema
964-
rev: "0.37.0"
964+
rev: "0.37.1"
965965
hooks:
966966
- id: check-dependabot
967967
- id: check-github-workflows

{{cookiecutter.project_name}}/.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
--durations=20
8787
8888
- name: Upload coverage report
89-
uses: codecov/codecov-action@v5
89+
uses: codecov/codecov-action@v6
9090
with:
9191
token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %}
9292

{{cookiecutter.project_name}}/.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ repos:
4343
args: [--prose-wrap=always]
4444

4545
- repo: https://github.com/astral-sh/ruff-pre-commit
46-
rev: "v0.15.7"
46+
rev: "v0.15.8"
4747
hooks:
4848
- id: ruff-check
4949
args: ["--fix"]
@@ -52,7 +52,7 @@ repos:
5252
{%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %}
5353

5454
- repo: https://github.com/pre-commit/mirrors-clang-format
55-
rev: "v22.1.1"
55+
rev: "v22.1.2"
5656
hooks:
5757
- id: clang-format
5858
types_or: [c++, c, cuda]
@@ -105,7 +105,7 @@ repos:
105105
additional_dependencies: ["validate-pyproject-schema-store[all]"]
106106

107107
- repo: https://github.com/python-jsonschema/check-jsonschema
108-
rev: "0.37.0"
108+
rev: "0.37.1"
109109
hooks:
110110
{%- if cookiecutter.__ci == "github" %}
111111
- id: check-dependabot

0 commit comments

Comments
 (0)