@@ -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
@@ -140,7 +140,7 @@ jobs:
140
140
cancel-in-progress : ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
141
141
steps :
142
142
- name : download tracked files and build artifacts
143
- uses : actions/download-artifact@v3
143
+ uses : actions/download-artifact@v4
144
144
with :
145
145
name : windows-artifacts
146
146
path : ${{github.workspace}}
@@ -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
@@ -230,7 +230,7 @@ jobs:
230
230
steps :
231
231
- uses : git-for-windows/setup-git-for-windows-sdk@v1
232
232
- name : download tracked files and build artifacts
233
- uses : actions/download-artifact@v3
233
+ uses : actions/download-artifact@v4
234
234
with :
235
235
name : vs-artifacts
236
236
path : ${{github.workspace}}
@@ -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}}
@@ -344,7 +344,7 @@ jobs:
344
344
steps :
345
345
- uses : actions/checkout@v4
346
346
if : matrix.vector.jobname != 'linux32'
347
- - uses : actions/checkout@v1
347
+ - uses : actions/checkout@v1 # cannot be upgraded because Node.js Actions aren't supported in this container
348
348
if : matrix.vector.jobname == 'linux32'
349
349
- run : ci/install-docker-dependencies.sh
350
350
- run : ci/run-build-and-tests.sh
@@ -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@v1 # cannot be upgraded because Node.js Actions aren't supported in this container
363
363
with :
364
364
name : failed-tests-${{matrix.vector.jobname}}
365
365
path : ${{env.FAILED_TEST_ARTIFACTS}}
0 commit comments