Skip to content

Commit 78740fb

Browse files
chore(deps): bump versions (#747)
[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 1b9113b commit 78740fb

7 files changed

Lines changed: 30 additions & 30 deletions

File tree

.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.15.1"
32+
rev: "v0.15.4"
3333
hooks:
3434
- id: ruff-check
3535
args: ["--fix", "--show-fixes"]
@@ -67,7 +67,7 @@ repos:
6767
args: [--prose-wrap=always]
6868

6969
- repo: https://github.com/crate-ci/typos
70-
rev: "v1.43.4"
70+
rev: "v1.44.0"
7171
hooks:
7272
- id: typos
7373
exclude: ^Gemfile\.lock$

docs/pages/guides/gha_pure.md

Lines changed: 7 additions & 7 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@v6
80+
- uses: actions/upload-artifact@v7
8181
with:
8282
name: Packages
8383
path: dist/*
@@ -148,13 +148,13 @@ publish:
148148
runs-on: ubuntu-latest
149149
if: github.event_name == 'release' && github.event.action == 'published'
150150
steps:
151-
- uses: actions/download-artifact@v7
151+
- uses: actions/download-artifact@v8
152152
with:
153153
name: Packages
154154
path: dist
155155
156156
- name: Generate artifact attestation for sdist and wheel
157-
uses: actions/attest-build-provenance@v3
157+
uses: actions/attest-build-provenance@v4
158158
with:
159159
subject-path: "dist/*"
160160
@@ -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@v7
185+
- uses: actions/download-artifact@v8
186186
with:
187187
name: Packages
188188
path: dist
@@ -246,13 +246,13 @@ jobs:
246246
if: github.event_name == 'release' && github.event.action == 'published'
247247
248248
steps:
249-
- uses: actions/download-artifact@v7
249+
- uses: actions/download-artifact@v8
250250
with:
251251
name: Packages
252252
path: dist
253253
254254
- name: Generate artifact attestation for sdist and wheel
255-
uses: actions/attest-build-provenance@v3
255+
uses: actions/attest-build-provenance@v4
256256
with:
257257
subject-path: "dist/*"
258258
@@ -294,7 +294,7 @@ jobs:
294294
if: github.event_name == 'release' && github.event.action == 'published'
295295
296296
steps:
297-
- uses: actions/download-artifact@v7
297+
- uses: actions/download-artifact@v8
298298
with:
299299
name: Packages
300300
path: dist

docs/pages/guides/gha_wheels.md

Lines changed: 5 additions & 5 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@v6
91+
- uses: actions/upload-artifact@v7
9292
with:
9393
name: cibw-sdist
9494
path: dist/*.tar.gz
@@ -130,7 +130,7 @@ build_wheels:
130130
- uses: pypa/cibuildwheel@v3.3
131131
132132
- name: Upload wheels
133-
uses: actions/upload-artifact@v6
133+
uses: actions/upload-artifact@v7
134134
with:
135135
name: cibw-wheels-${{ matrix.os }}
136136
path: wheelhouse/*.whl
@@ -184,14 +184,14 @@ upload_all:
184184
runs-on: ubuntu-latest
185185
if: github.event_name == 'release' && github.event.action == 'published'
186186
steps:
187-
- uses: actions/download-artifact@v7
187+
- uses: actions/download-artifact@v8
188188
with:
189189
pattern: cibw-*
190190
path: dist
191191
merge-multiple: true
192192
193193
- name: Generate artifact attestations
194-
uses: actions/attest-build-provenance@v3
194+
uses: actions/attest-build-provenance@v4
195195
with:
196196
subject-path: "dist/*"
197197
@@ -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@v7
222+
- uses: actions/download-artifact@v8
223223
with:
224224
pattern: cibw-*
225225
path: dist

docs/pages/guides/style.md

Lines changed: 7 additions & 7 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.15.1"
143+
rev: "v0.15.4"
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.15.1"
233+
rev: "v0.15.4"
234234
hooks:
235235
- id: ruff-check
236236
args: ["--fix", "--show-fixes"]
@@ -551,7 +551,7 @@ pre-commit config will work:
551551

552552
```yaml
553553
- repo: https://github.com/PyCQA/isort
554-
rev: "7.0.0"
554+
rev: "8.0.1"
555555
hooks:
556556
- id: isort
557557
```
@@ -786,7 +786,7 @@ integration.
786786

787787
```yaml
788788
- repo: https://github.com/crate-ci/typos
789-
rev: "v1.43.4"
789+
rev: "v1.44.0"
790790
hooks:
791791
- id: typos
792792
args: []
@@ -866,7 +866,7 @@ following pre-commit config:
866866

867867
```yaml
868868
- repo: https://github.com/pre-commit/mirrors-clang-format
869-
rev: "v21.1.8"
869+
rev: "v22.1.0"
870870
hooks:
871871
- id: clang-format
872872
types_or: [c++, c, cuda]
@@ -943,7 +943,7 @@ schemas, and you can load them via URL. It work on JSON, YAML, and TOML.
943943

944944
```yaml
945945
- repo: https://github.com/python-jsonschema/check-jsonschema
946-
rev: "0.36.2"
946+
rev: "0.37.0"
947947
hooks:
948948
- id: check-dependabot
949949
- id: check-github-workflows
@@ -1014,7 +1014,7 @@ You also might like the following hook, which cleans Jupyter outputs:
10141014

10151015
```yaml
10161016
- repo: https://github.com/kynan/nbstripout
1017-
rev: "0.9.0"
1017+
rev: "0.9.1"
10181018
hooks:
10191019
- id: nbstripout
10201020
```

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343
if: github.event_name == 'release' && github.event.action == 'published'
4444

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

5151
- name: Generate artifact attestation for sdist and wheel
52-
uses: actions/attest-build-provenance@v3
52+
uses: actions/attest-build-provenance@v4
5353
with:
5454
subject-path: "dist/*"
5555

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

Lines changed: 4 additions & 4 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@v6
33+
- uses: actions/upload-artifact@v7
3434
with:
3535
name: cibw-sdist
3636
path: dist/*.tar.gz
@@ -59,7 +59,7 @@ jobs:
5959
- uses: pypa/cibuildwheel@v3.3
6060

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

7777
steps:
78-
- uses: actions/download-artifact@v7
78+
- uses: actions/download-artifact@v8
7979
with:
8080
pattern: cibw-*
8181
path: dist
8282
merge-multiple: true
8383

8484
- name: Generate artifact attestations
85-
uses: actions/attest-build-provenance@v3
85+
uses: actions/attest-build-provenance@v4
8686
with:
8787
subject-path: "dist/*"
8888

{{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.1"
46+
rev: "v0.15.4"
4747
hooks:
4848
- id: ruff-check
4949
args: ["--fix", "--show-fixes"]
@@ -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: "v21.1.8"
55+
rev: "v22.1.0"
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.36.2"
108+
rev: "0.37.0"
109109
hooks:
110110
{%- if cookiecutter.__ci == "github" %}
111111
- id: check-dependabot

0 commit comments

Comments
 (0)