Skip to content

Commit 0b959e8

Browse files
chore(deps): bump versions (#637)
[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 4d74072 commit 0b959e8

File tree

9 files changed

+17
-17
lines changed

9 files changed

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

docs/pages/guides/gha_basic.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ lint:
6767
runs-on: ubuntu-latest
6868
steps:
6969
- uses: actions/checkout@v5
70-
- uses: actions/setup-python@v5
70+
- uses: actions/setup-python@v6
7171
with:
7272
python-version: "3.x"
7373
- uses: pre-commit/[email protected]
@@ -109,7 +109,7 @@ tests:
109109
fetch-depth: 0 # Only needed if using setuptools-scm
110110
111111
- name: Setup Python ${{ matrix.python-version }}
112-
uses: actions/setup-python@v5
112+
uses: actions/setup-python@v6
113113
with:
114114
python-version: ${{ matrix.python-version }}
115115
allow-prereleases: true
@@ -418,7 +418,7 @@ Python version might come as a surprise. You can do that, though, using
418418
{% raw %}
419419

420420
```yaml
421-
- uses: actions/setup-python@v5
421+
- uses: actions/setup-python@v6
422422
id: python
423423
with:
424424
python-version: "3.11"
@@ -677,7 +677,7 @@ this action later; specifically, may want to use
677677

678678
```yaml
679679
- name: Upload artifact
680-
uses: actions/upload-pages-artifact@v3
680+
uses: actions/upload-pages-artifact@v4
681681
```
682682

683683
This actions defaults to uploading `_site`, but you can give any `with: path:`

docs/pages/guides/gha_pure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ publish:
154154
path: dist
155155
156156
- name: Generate artifact attestation for sdist and wheel
157-
uses: actions/attest-build-provenance@v2
157+
uses: actions/attest-build-provenance@v3
158158
with:
159159
subject-path: "dist/*"
160160
@@ -252,7 +252,7 @@ jobs:
252252
path: dist
253253
254254
- name: Generate artifact attestation for sdist and wheel
255-
uses: actions/attest-build-provenance@v2
255+
uses: actions/attest-build-provenance@v3
256256
with:
257257
subject-path: "dist/*"
258258

docs/pages/guides/gha_wheels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ upload_all:
189189
merge-multiple: true
190190
191191
- name: Generate artifact attestations
192-
uses: actions/attest-build-provenance@v2
192+
uses: actions/attest-build-provenance@v3
193193
with:
194194
subject-path: "dist/*"
195195

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.12.9"
114+
rev: "v0.12.12"
115115
hooks:
116116
# id: ruff-check 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.12.9"
204+
rev: "v0.12.12"
205205
hooks:
206206
- id: ruff-check
207207
args: ["--fix", "--show-fixes"]
@@ -744,7 +744,7 @@ following pre-commit config:
744744

745745
```yaml
746746
- repo: https://github.com/pre-commit/mirrors-clang-format
747-
rev: "v20.1.8"
747+
rev: "v21.1.0"
748748
hooks:
749749
- id: clang-format
750750
types_or: [c++, c, cuda]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0
28-
- uses: actions/setup-python@v5
28+
- uses: actions/setup-python@v6
2929
with:
3030
python-version: "3.x"
3131

@@ -56,7 +56,7 @@ jobs:
5656
with:
5757
fetch-depth: 0
5858

59-
- uses: actions/setup-python@v5
59+
- uses: actions/setup-python@v6
6060
with:
6161
python-version: {% raw %}${{ matrix.python-version }}{% endraw %}
6262
allow-prereleases: true

{{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
@@ -49,7 +49,7 @@ jobs:
4949
path: dist
5050

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

{{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
@@ -82,7 +82,7 @@ jobs:
8282
merge-multiple: true
8383

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

{{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.12.9"
45+
rev: "v0.12.12"
4646
hooks:
4747
- id: ruff-check
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: "v20.1.8"
54+
rev: "v21.1.0"
5555
hooks:
5656
- id: clang-format
5757
types_or: [c++, c, cuda]

0 commit comments

Comments
 (0)