Skip to content

Commit 1a3dd62

Browse files
[create-pull-request] automated change
1 parent b7cd3c4 commit 1a3dd62

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
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.7.4"
32+
rev: "v0.8.0"
3333
hooks:
3434
- id: ruff
3535
args: ["--fix", "--show-fixes"]

docs/pages/guides/coverage.md

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

9292
```yaml
9393
- name: Upload coverage report
94-
uses: codecov/[email protected].2
94+
uses: codecov/[email protected].7
9595
with:
9696
token: ${{ secrets.CODECOV_TOKEN }}
9797
```

docs/pages/guides/gha_wheels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ build_wheels:
114114
fetch-depth: 0
115115
submodules: true
116116
117-
- uses: pypa/cibuildwheel@v2.21
117+
- uses: pypa/cibuildwheel@v2.22
118118
119119
- name: Upload wheels
120120
uses: actions/upload-artifact@v4

docs/pages/guides/style.md

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

112112
```yaml
113113
- repo: https://github.com/astral-sh/ruff-pre-commit
114-
rev: "v0.7.4"
114+
rev: "v0.8.0"
115115
hooks:
116116
# id: ruff would go here if using both
117117
- id: ruff-format
@@ -201,7 +201,7 @@ pre-commit hook.
201201
202202
```yaml
203203
- repo: https://github.com/astral-sh/ruff-pre-commit
204-
rev: "v0.7.4"
204+
rev: "v0.8.0"
205205
hooks:
206206
- id: ruff
207207
args: ["--fix", "--show-fixes"]
@@ -745,7 +745,7 @@ following pre-commit config:
745745

746746
```yaml
747747
- repo: https://github.com/pre-commit/mirrors-clang-format
748-
rev: "v19.1.3"
748+
rev: "v19.1.4"
749749
hooks:
750750
- id: clang-format
751751
types_or: [c++, c, cuda]

docs/pages/guides/tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ You can install `uv` with `pipx`, `brew`, etc. If you want to use uv in GitHub
320320
Actions, one way is to use this:
321321

322322
```yaml
323-
- uses: astral-sh/setup-uv@v3
323+
- uses: astral-sh/setup-uv@v4
324324
```
325325

326326
Check your jobs with `uv`; most things do not need to change. The main

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ jobs:
7474
--durations=20
7575
7676
- name: Upload coverage report
77-
uses: codecov/[email protected].2
77+
uses: codecov/[email protected].7
7878
with:
7979
token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %}

{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %}

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
fetch-depth: 0
5050

51-
- uses: pypa/cibuildwheel@v2.21
51+
- uses: pypa/cibuildwheel@v2.22
5252

5353
- name: Upload wheels
5454
uses: actions/upload-artifact@v4

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

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

4444
- repo: https://github.com/astral-sh/ruff-pre-commit
45-
rev: "v0.7.4"
45+
rev: "v0.8.0"
4646
hooks:
4747
- id: ruff
4848
args: ["--fix", "--show-fixes"]
@@ -51,7 +51,7 @@ repos:
5151
{%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %}
5252

5353
- repo: https://github.com/pre-commit/mirrors-clang-format
54-
rev: "v19.1.3"
54+
rev: "v19.1.4"
5555
hooks:
5656
- id: clang-format
5757
types_or: [c++, c, cuda]

0 commit comments

Comments
 (0)