Skip to content

Commit 53b5ae3

Browse files
[create-pull-request] automated change
1 parent 602915c commit 53b5ae3

File tree

7 files changed

+17
-17
lines changed

7 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.14.8"
32+
rev: "v0.14.9"
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@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: 2 additions & 2 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.9"
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.9"
234234
hooks:
235235
- id: ruff-check
236236
args: ["--fix", "--show-fixes"]

{{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: 1 addition & 1 deletion
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.9"
4747
hooks:
4848
- id: ruff-check
4949
args: ["--fix", "--show-fixes"]

0 commit comments

Comments
 (0)