Skip to content

Commit 9b6ff44

Browse files
chore(deps): bump versions (#727)
1 parent 57b9581 commit 9b6ff44

File tree

7 files changed

+25
-25
lines changed

7 files changed

+25
-25
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
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.14.8"
32+
rev: "v0.14.10"
3333
hooks:
3434
- id: ruff-check
3535
args: ["--fix", "--show-fixes"]
@@ -43,7 +43,7 @@ repos:
4343
- id: rst-inline-touching-normal
4444

4545
- repo: https://github.com/pre-commit/mirrors-mypy
46-
rev: "v1.19.0"
46+
rev: "v1.19.1"
4747
hooks:
4848
- id: mypy
4949
files: "(src|tests|noxfile.py)"

docs/pages/guides/gha_pure.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ dist:
7777
- name: Build SDist and wheel
7878
run: pipx run build
7979
80-
- uses: actions/upload-artifact@v5
80+
- uses: actions/upload-artifact@v6
8181
with:
8282
name: Packages
8383
path: dist/*
@@ -148,7 +148,7 @@ publish:
148148
runs-on: ubuntu-latest
149149
if: github.event_name == 'release' && github.event.action == 'published'
150150
steps:
151-
- uses: actions/download-artifact@v6
151+
- uses: actions/download-artifact@v7
152152
with:
153153
name: Packages
154154
path: dist
@@ -182,7 +182,7 @@ publish:
182182
runs-on: ubuntu-latest
183183
if: github.event_name == 'release' && github.event.action == 'published'
184184
steps:
185-
- uses: actions/download-artifact@v6
185+
- uses: actions/download-artifact@v7
186186
with:
187187
name: Packages
188188
path: dist
@@ -246,7 +246,7 @@ jobs:
246246
if: github.event_name == 'release' && github.event.action == 'published'
247247
248248
steps:
249-
- uses: actions/download-artifact@v6
249+
- uses: actions/download-artifact@v7
250250
with:
251251
name: Packages
252252
path: dist
@@ -294,7 +294,7 @@ jobs:
294294
if: github.event_name == 'release' && github.event.action == 'published'
295295
296296
steps:
297-
- uses: actions/download-artifact@v6
297+
- uses: actions/download-artifact@v7
298298
with:
299299
name: Packages
300300
path: dist

docs/pages/guides/gha_wheels.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ make_sdist:
8888
- name: Build SDist
8989
run: uv build --sdist
9090
91-
- uses: actions/upload-artifact@v5
91+
- uses: actions/upload-artifact@v6
9292
with:
9393
name: cibw-sdist
9494
path: dist/*.tar.gz
@@ -130,7 +130,7 @@ build_wheels:
130130
- uses: pypa/[email protected]
131131
132132
- name: Upload wheels
133-
uses: actions/upload-artifact@v5
133+
uses: actions/upload-artifact@v6
134134
with:
135135
name: cibw-wheels-${{ matrix.os }}
136136
path: wheelhouse/*.whl
@@ -184,7 +184,7 @@ upload_all:
184184
runs-on: ubuntu-latest
185185
if: github.event_name == 'release' && github.event.action == 'published'
186186
steps:
187-
- uses: actions/download-artifact@v6
187+
- uses: actions/download-artifact@v7
188188
with:
189189
pattern: cibw-*
190190
path: dist
@@ -219,7 +219,7 @@ upload_all:
219219
runs-on: ubuntu-latest
220220
if: github.event_name == 'release' && github.event.action == 'published'
221221
steps:
222-
- uses: actions/download-artifact@v6
222+
- uses: actions/download-artifact@v7
223223
with:
224224
pattern: cibw-*
225225
path: dist

docs/pages/guides/style.md

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

141141
```yaml
142142
- repo: https://github.com/astral-sh/ruff-pre-commit
143-
rev: "v0.14.8"
143+
rev: "v0.14.10"
144144
hooks:
145145
# id: ruff-check would go here if using both
146146
- id: ruff-format
@@ -230,7 +230,7 @@ pre-commit hook.
230230
231231
```yaml
232232
- repo: https://github.com/astral-sh/ruff-pre-commit
233-
rev: "v0.14.8"
233+
rev: "v0.14.10"
234234
hooks:
235235
- id: ruff-check
236236
args: ["--fix", "--show-fixes"]
@@ -621,7 +621,7 @@ The MyPy addition for pre-commit:
621621

622622
```yaml
623623
- repo: https://github.com/pre-commit/mirrors-mypy
624-
rev: "v1.19.0"
624+
rev: "v1.19.1"
625625
hooks:
626626
- id: mypy
627627
files: src
@@ -732,7 +732,7 @@ important parts (like Python classifiers) are in sync. This tool,
732732

733733
```yaml
734734
- repo: https://github.com/asottile/setup-cfg-fmt
735-
rev: "v3.1.0"
735+
rev: "v3.2.0"
736736
hooks:
737737
- id: setup-cfg-fmt
738738
args: [--include-version-classifiers, --max-py-version=3.12]
@@ -831,7 +831,7 @@ following pre-commit config:
831831

832832
```yaml
833833
- repo: https://github.com/pre-commit/mirrors-clang-format
834-
rev: "v21.1.7"
834+
rev: "v21.1.8"
835835
hooks:
836836
- id: clang-format
837837
types_or: [c++, c, cuda]
@@ -908,7 +908,7 @@ schemas, and you can load them via URL. It work on JSON, YAML, and TOML.
908908

909909
```yaml
910910
- repo: https://github.com/python-jsonschema/check-jsonschema
911-
rev: "0.35.0"
911+
rev: "0.36.0"
912912
hooks:
913913
- id: check-dependabot
914914
- id: check-github-workflows

{{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
@@ -43,7 +43,7 @@ jobs:
4343
if: github.event_name == 'release' && github.event.action == 'published'
4444

4545
steps:
46-
- uses: actions/download-artifact@v6
46+
- uses: actions/download-artifact@v7
4747
with:
4848
name: Packages
4949
path: dist

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Build SDist
3131
run: pipx run build --sdist
3232

33-
- uses: actions/upload-artifact@v5
33+
- uses: actions/upload-artifact@v6
3434
with:
3535
name: cibw-sdist
3636
path: dist/*.tar.gz
@@ -59,7 +59,7 @@ jobs:
5959
- uses: pypa/[email protected]
6060

6161
- name: Upload wheels
62-
uses: actions/upload-artifact@v5
62+
uses: actions/upload-artifact@v6
6363
with:
6464
name: cibw-wheels-{% raw %}${{ matrix.os }}-${{ strategy.job-index }}{% endraw %}
6565
path: wheelhouse/*.whl
@@ -75,7 +75,7 @@ jobs:
7575
if: github.event_name == 'release' && github.event.action == 'published'
7676

7777
steps:
78-
- uses: actions/download-artifact@v6
78+
- uses: actions/download-artifact@v7
7979
with:
8080
pattern: cibw-*
8181
path: dist

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

Lines changed: 4 additions & 4 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.14.8"
46+
rev: "v0.14.10"
4747
hooks:
4848
- id: ruff-check
4949
args: ["--fix", "--show-fixes"]
@@ -52,15 +52,15 @@ repos:
5252
{%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %}
5353

5454
- repo: https://github.com/pre-commit/mirrors-clang-format
55-
rev: "v21.1.7"
55+
rev: "v21.1.8"
5656
hooks:
5757
- id: clang-format
5858
types_or: [c++, c, cuda]
5959

6060
{%- endif %}
6161

6262
- repo: https://github.com/pre-commit/mirrors-mypy
63-
rev: "v1.19.0"
63+
rev: "v1.19.1"
6464
hooks:
6565
- id: mypy
6666
files: src|tests|noxfile.py
@@ -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.35.0"
108+
rev: "0.36.0"
109109
hooks:
110110
{%- if cookiecutter.__ci == "github" %}
111111
- id: check-dependabot

0 commit comments

Comments
 (0)