Skip to content

Commit e6ac06e

Browse files
chore(deps): update github artifact actions (#392)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 6d4db8d commit e6ac06e

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

.github/workflows/analysis-coverage.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
coverage xml && coverage html
7272
7373
- name: HTML coverage to artifacts
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v5
7575
with:
7676
name: coverage_linux
7777
path: ./htmlcov
@@ -118,7 +118,7 @@ jobs:
118118
coverage xml && coverage html
119119
120120
- name: HTML coverage to artifacts
121-
uses: actions/upload-artifact@v4
121+
uses: actions/upload-artifact@v5
122122
with:
123123
name: coverage_linux_dev
124124
path: ./htmlcov
@@ -157,7 +157,7 @@ jobs:
157157
run: coverage run -m pytest && coverage xml && coverage html
158158

159159
- name: HTML coverage to artifacts
160-
uses: actions/upload-artifact@v4
160+
uses: actions/upload-artifact@v5
161161
with:
162162
name: coverage_macos
163163
path: ./htmlcov
@@ -194,7 +194,7 @@ jobs:
194194
run: coverage run -m pytest && coverage xml && coverage html
195195

196196
- name: HTML coverage to artifacts
197-
uses: actions/upload-artifact@v4
197+
uses: actions/upload-artifact@v5
198198
with:
199199
name: coverage_macos_arm
200200
path: ./htmlcov
@@ -278,7 +278,7 @@ jobs:
278278
run: coverage run -m pytest && coverage xml && coverage html
279279

280280
- name: HTML coverage to artifacts
281-
uses: actions/upload-artifact@v4
281+
uses: actions/upload-artifact@v5
282282
with:
283283
name: coverage_windows
284284
path: ./htmlcov
@@ -324,7 +324,7 @@ jobs:
324324
run: sudo -H coverage run -m pytest && coverage xml && coverage html
325325

326326
- name: HTML coverage to artifacts
327-
uses: actions/upload-artifact@v4
327+
uses: actions/upload-artifact@v5
328328
with:
329329
name: coverage_light_macos
330330
path: ./htmlcov
@@ -393,7 +393,7 @@ jobs:
393393
run: coverage run -m pytest tests/import_error_test.py && coverage xml && coverage html
394394

395395
- name: HTML coverage to artifacts
396-
uses: actions/upload-artifact@v4
396+
uses: actions/upload-artifact@v5
397397
with:
398398
name: coverage_macos_imp_err
399399
path: ./htmlcov

.github/workflows/publish-wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
echo "EOF" >> $GITHUB_ENV
3636
3737
- name: Pillow-Heif sdist and wheels
38-
uses: actions/download-artifact@v5
38+
uses: actions/download-artifact@v6
3939
with:
4040
path: wheelhouse_pillow_heif
4141
pattern: wheels_pillow_heif-*
4242
merge-multiple: true
4343

4444
- name: Pi-Heif sdist and wheels
45-
uses: actions/download-artifact@v5
45+
uses: actions/download-artifact@v6
4646
with:
4747
path: wheelhouse_pi_heif
4848
pattern: wheels_pi_heif-*

.github/workflows/wheels-pi_heif.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
python3 -m twine check wheelhouse/*
5151
5252
- name: Upload built wheels
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v5
5454
with:
5555
name: wheels_pi_heif-macos-arm64
5656
path: wheelhouse/*.whl
@@ -110,7 +110,7 @@ jobs:
110110
python3 -m twine check wheelhouse/*
111111
112112
- name: Upload built wheels
113-
uses: actions/upload-artifact@v4
113+
uses: actions/upload-artifact@v5
114114
with:
115115
name: wheels_pi_heif-windows-x86_64
116116
path: wheelhouse/*.whl
@@ -151,7 +151,7 @@ jobs:
151151
python3 -m twine check wheelhouse/*
152152
153153
- name: Upload built wheels
154-
uses: actions/upload-artifact@v4
154+
uses: actions/upload-artifact@v5
155155
with:
156156
name: wheels_pi_heif-macos-x86_64
157157
path: wheelhouse/*.whl
@@ -196,7 +196,7 @@ jobs:
196196
python3 -m twine check wheelhouse/*
197197
198198
- name: Uploading wheels
199-
uses: actions/upload-artifact@v4
199+
uses: actions/upload-artifact@v5
200200
with:
201201
name: wheels_pi_heif-${{ matrix.cibw_buildlinux }}-amd64
202202
path: wheelhouse/*.whl
@@ -241,7 +241,7 @@ jobs:
241241
python3 -m twine check wheelhouse/*
242242
243243
- name: Uploading wheels
244-
uses: actions/upload-artifact@v4
244+
uses: actions/upload-artifact@v5
245245
with:
246246
name: wheels_pi_heif-${{ matrix.cibw_buildlinux }}-arm64
247247
path: wheelhouse/*.whl
@@ -290,7 +290,7 @@ jobs:
290290
python3 -m pytest
291291
292292
- name: Upload sdist
293-
uses: actions/upload-artifact@v4
293+
uses: actions/upload-artifact@v5
294294
with:
295295
name: wheels_pi_heif-sdist
296296
path: wheelhouse/*.tar.gz

.github/workflows/wheels-pillow_heif.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
python3 -m twine check wheelhouse/*
4545
4646
- name: Upload built wheels
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v5
4848
with:
4949
name: wheels_pillow_heif-macos-arm64
5050
path: wheelhouse/*.whl
@@ -101,7 +101,7 @@ jobs:
101101
python3 -m twine check wheelhouse/*
102102
103103
- name: Upload built wheels
104-
uses: actions/upload-artifact@v4
104+
uses: actions/upload-artifact@v5
105105
with:
106106
name: wheels_pillow_heif-windows-x86_64
107107
path: wheelhouse/*.whl
@@ -138,7 +138,7 @@ jobs:
138138
python3 -m twine check wheelhouse/*
139139
140140
- name: Upload built wheels
141-
uses: actions/upload-artifact@v4
141+
uses: actions/upload-artifact@v5
142142
with:
143143
name: wheels_pillow_heif-macos-x86_64
144144
path: wheelhouse/*.whl
@@ -185,7 +185,7 @@ jobs:
185185
python3 -m twine check wheelhouse/*
186186
187187
- name: Uploading wheels
188-
uses: actions/upload-artifact@v4
188+
uses: actions/upload-artifact@v5
189189
with:
190190
name: wheels_pillow_heif-${{ matrix.cibw_buildlinux }}-amd64
191191
path: wheelhouse/*.whl
@@ -232,7 +232,7 @@ jobs:
232232
python3 -m twine check wheelhouse/*
233233
234234
- name: Uploading wheels
235-
uses: actions/upload-artifact@v4
235+
uses: actions/upload-artifact@v5
236236
with:
237237
name: wheels_pillow_heif-${{ matrix.cibw_buildlinux }}-arm64
238238
path: wheelhouse/*.whl
@@ -279,7 +279,7 @@ jobs:
279279
python3 -m pytest
280280
281281
- name: Upload sdist
282-
uses: actions/upload-artifact@v4
282+
uses: actions/upload-artifact@v5
283283
with:
284284
name: wheels_pillow_heif-sdist
285285
path: wheelhouse/*.tar.gz

0 commit comments

Comments
 (0)