Skip to content

Commit cb83c41

Browse files
chore(deps): bump versions (#663)
[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 5cc8cd9 commit cb83c41

File tree

7 files changed

+18
-18
lines changed

7 files changed

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

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@v4
80+
- uses: actions/upload-artifact@v5
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@v5
151+
- uses: actions/download-artifact@v6
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@v5
185+
- uses: actions/download-artifact@v6
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@v5
249+
- uses: actions/download-artifact@v6
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@v5
297+
- uses: actions/download-artifact@v6
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@v4
91+
- uses: actions/upload-artifact@v5
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@v4
133+
uses: actions/upload-artifact@v5
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@v5
187+
- uses: actions/download-artifact@v6
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@v5
222+
- uses: actions/download-artifact@v6
223223
with:
224224
pattern: cibw-*
225225
path: dist

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.14.1"
114+
rev: "v0.14.3"
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.14.1"
204+
rev: "v0.14.3"
205205
hooks:
206206
- id: ruff-check
207207
args: ["--fix", "--show-fixes"]
@@ -351,7 +351,7 @@ use the manual stage, it's opt-in instead of automatic.
351351

352352
```yaml
353353
- repo: https://github.com/hadialqattan/pycln
354-
rev: "v2.5.0"
354+
rev: "v2.6.0"
355355
hooks:
356356
- id: pycln
357357
args: [--all]

{{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@v5
46+
- uses: actions/download-artifact@v6
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@v4
33+
- uses: actions/upload-artifact@v5
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@v4
62+
uses: actions/upload-artifact@v5
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@v5
78+
- uses: actions/download-artifact@v6
7979
with:
8080
pattern: cibw-*
8181
path: dist

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

Lines changed: 1 addition & 1 deletion
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.14.1"
45+
rev: "v0.14.3"
4646
hooks:
4747
- id: ruff-check
4848
args: ["--fix", "--show-fixes"]

0 commit comments

Comments
 (0)