Skip to content

Commit 844b10f

Browse files
Update github-actions (#9375)
1 parent 0a1d6c3 commit 844b10f

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/cifuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ jobs:
4444
language: python
4545
dry-run: false
4646
- name: Upload New Crash
47-
uses: actions/upload-artifact@v5
47+
uses: actions/upload-artifact@v6
4848
if: failure() && steps.build.outcome == 'success'
4949
with:
5050
name: artifacts
5151
path: ./out/artifacts
5252
- name: Upload Legacy Crash
53-
uses: actions/upload-artifact@v5
53+
uses: actions/upload-artifact@v6
5454
if: steps.run.outcome == 'success'
5555
with:
5656
name: crash

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: python3 .github/workflows/system-info.py
5050

5151
- name: Cache libimagequant
52-
uses: actions/cache@v4
52+
uses: actions/cache@v5
5353
id: cache-libimagequant
5454
with:
5555
path: ~/cache-libimagequant

.github/workflows/test-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112

113113
- name: Cache build
114114
id: build-cache
115-
uses: actions/cache@v4
115+
uses: actions/cache@v5
116116
with:
117117
path: winbuild\build
118118
key:
@@ -217,7 +217,7 @@ jobs:
217217
shell: bash
218218

219219
- name: Upload errors
220-
uses: actions/upload-artifact@v5
220+
uses: actions/upload-artifact@v6
221221
if: failure()
222222
with:
223223
name: errors

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292

9393
- name: Cache libimagequant
9494
if: startsWith(matrix.os, 'ubuntu')
95-
uses: actions/cache@v4
95+
uses: actions/cache@v5
9696
id: cache-libimagequant
9797
with:
9898
path: ~/cache-libimagequant
@@ -143,7 +143,7 @@ jobs:
143143
mkdir -p Tests/errors
144144
145145
- name: Upload errors
146-
uses: actions/upload-artifact@v5
146+
uses: actions/upload-artifact@v6
147147
if: failure()
148148
with:
149149
name: errors

.github/workflows/wheels.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux }}
135135
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macosx_deployment_target }}
136136

137-
- uses: actions/upload-artifact@v5
137+
- uses: actions/upload-artifact@v6
138138
with:
139139
name: dist-${{ matrix.name }}
140140
path: ./wheelhouse/*.whl
@@ -220,13 +220,13 @@ jobs:
220220
shell: cmd
221221

222222
- name: Upload wheels
223-
uses: actions/upload-artifact@v5
223+
uses: actions/upload-artifact@v6
224224
with:
225225
name: dist-windows-${{ matrix.cibw_arch }}
226226
path: ./wheelhouse/*.whl
227227

228228
- name: Upload fribidi.dll
229-
uses: actions/upload-artifact@v5
229+
uses: actions/upload-artifact@v6
230230
with:
231231
name: fribidi-windows-${{ matrix.cibw_arch }}
232232
path: winbuild\build\bin\fribidi*
@@ -246,7 +246,7 @@ jobs:
246246

247247
- run: make sdist
248248

249-
- uses: actions/upload-artifact@v5
249+
- uses: actions/upload-artifact@v6
250250
with:
251251
name: dist-sdist
252252
path: dist/*.tar.gz
@@ -256,7 +256,7 @@ jobs:
256256
runs-on: ubuntu-latest
257257
name: Count dists
258258
steps:
259-
- uses: actions/download-artifact@v6
259+
- uses: actions/download-artifact@v7
260260
with:
261261
pattern: dist-*
262262
path: dist
@@ -275,13 +275,13 @@ jobs:
275275
runs-on: ubuntu-latest
276276
name: Upload wheels to scientific-python-nightly-wheels
277277
steps:
278-
- uses: actions/download-artifact@v6
278+
- uses: actions/download-artifact@v7
279279
with:
280280
pattern: dist-!(sdist)*
281281
path: dist
282282
merge-multiple: true
283283
- name: Upload wheels to scientific-python-nightly-wheels
284-
uses: scientific-python/upload-nightly-action@b36e8c0c10dbcfd2e05bf95f17ef8c14fd708dbf # 0.6.2
284+
uses: scientific-python/upload-nightly-action@5748273c71e2d8d3a61f3a11a16421c8954f9ecf # 0.6.3
285285
with:
286286
artifacts_path: dist
287287
anaconda_nightly_upload_token: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }}
@@ -297,7 +297,7 @@ jobs:
297297
permissions:
298298
id-token: write
299299
steps:
300-
- uses: actions/download-artifact@v6
300+
- uses: actions/download-artifact@v7
301301
with:
302302
pattern: dist-*
303303
path: dist

0 commit comments

Comments
 (0)