@@ -123,7 +123,7 @@ jobs:
123
123
- name : zip up tracked files
124
124
run : git archive -o artifacts/tracked.tar.gz HEAD
125
125
- name : upload tracked files and build artifacts
126
- uses : actions/upload-artifact@v3
126
+ uses : actions/upload-artifact@v4
127
127
with :
128
128
name : windows-artifacts
129
129
path : artifacts
@@ -157,7 +157,7 @@ jobs:
157
157
run : ci/print-test-failures.sh
158
158
- name : Upload failed tests' directories
159
159
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
160
- uses : actions/upload-artifact@v3
160
+ uses : actions/upload-artifact@v4
161
161
with :
162
162
name : failed-tests-windows
163
163
path : ${{env.FAILED_TEST_ARTIFACTS}}
@@ -212,7 +212,7 @@ jobs:
212
212
- name : zip up tracked files
213
213
run : git archive -o artifacts/tracked.tar.gz HEAD
214
214
- name : upload tracked files and build artifacts
215
- uses : actions/upload-artifact@v3
215
+ uses : actions/upload-artifact@v4
216
216
with :
217
217
name : vs-artifacts
218
218
path : artifacts
@@ -248,7 +248,7 @@ jobs:
248
248
run : ci/print-test-failures.sh
249
249
- name : Upload failed tests' directories
250
250
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
251
- uses : actions/upload-artifact@v3
251
+ uses : actions/upload-artifact@v4
252
252
with :
253
253
name : failed-tests-windows
254
254
path : ${{env.FAILED_TEST_ARTIFACTS}}
@@ -305,7 +305,7 @@ jobs:
305
305
run : ci/print-test-failures.sh
306
306
- name : Upload failed tests' directories
307
307
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
308
- uses : actions/upload-artifact@v3
308
+ uses : actions/upload-artifact@v4
309
309
with :
310
310
name : failed-tests-${{matrix.vector.jobname}}
311
311
path : ${{env.FAILED_TEST_ARTIFACTS}}
@@ -353,13 +353,13 @@ jobs:
353
353
run : ci/print-test-failures.sh
354
354
- name : Upload failed tests' directories
355
355
if : failure() && env.FAILED_TEST_ARTIFACTS != '' && matrix.vector.jobname != 'linux32'
356
- uses : actions/upload-artifact@v3
356
+ uses : actions/upload-artifact@v4
357
357
with :
358
358
name : failed-tests-${{matrix.vector.jobname}}
359
359
path : ${{env.FAILED_TEST_ARTIFACTS}}
360
360
- name : Upload failed tests' directories
361
361
if : failure() && env.FAILED_TEST_ARTIFACTS != '' && matrix.vector.jobname == 'linux32'
362
- uses : actions/upload-artifact@v1
362
+ uses : actions/upload-artifact@v4
363
363
with :
364
364
name : failed-tests-${{matrix.vector.jobname}}
365
365
path : ${{env.FAILED_TEST_ARTIFACTS}}
0 commit comments