@@ -106,7 +106,7 @@ jobs:
106
106
- name : zip up tracked files
107
107
run : git archive -o artifacts/tracked.tar.gz HEAD
108
108
- name : upload tracked files and build artifacts
109
- uses : actions/upload-artifact@v3
109
+ uses : actions/upload-artifact@v4
110
110
with :
111
111
name : windows-artifacts
112
112
path : artifacts
@@ -123,7 +123,7 @@ jobs:
123
123
cancel-in-progress : ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
124
124
steps :
125
125
- name : download tracked files and build artifacts
126
- uses : actions/download-artifact@v3
126
+ uses : actions/download-artifact@v4
127
127
with :
128
128
name : windows-artifacts
129
129
path : ${{github.workspace}}
@@ -140,7 +140,7 @@ jobs:
140
140
run : ci/print-test-failures.sh
141
141
- name : Upload failed tests' directories
142
142
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
143
- uses : actions/upload-artifact@v3
143
+ uses : actions/upload-artifact@v4
144
144
with :
145
145
name : failed-tests-windows
146
146
path : ${{env.FAILED_TEST_ARTIFACTS}}
@@ -195,7 +195,7 @@ jobs:
195
195
- name : zip up tracked files
196
196
run : git archive -o artifacts/tracked.tar.gz HEAD
197
197
- name : upload tracked files and build artifacts
198
- uses : actions/upload-artifact@v3
198
+ uses : actions/upload-artifact@v4
199
199
with :
200
200
name : vs-artifacts
201
201
path : artifacts
@@ -213,7 +213,7 @@ jobs:
213
213
steps :
214
214
- uses : git-for-windows/setup-git-for-windows-sdk@v1
215
215
- name : download tracked files and build artifacts
216
- uses : actions/download-artifact@v3
216
+ uses : actions/download-artifact@v4
217
217
with :
218
218
name : vs-artifacts
219
219
path : ${{github.workspace}}
@@ -231,7 +231,7 @@ jobs:
231
231
run : ci/print-test-failures.sh
232
232
- name : Upload failed tests' directories
233
233
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
234
- uses : actions/upload-artifact@v3
234
+ uses : actions/upload-artifact@v4
235
235
with :
236
236
name : failed-tests-windows
237
237
path : ${{env.FAILED_TEST_ARTIFACTS}}
@@ -293,7 +293,7 @@ jobs:
293
293
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
294
294
- name : Upload failed tests' directories
295
295
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
296
- uses : actions/upload-artifact@v3
296
+ uses : actions/upload-artifact@v4
297
297
with :
298
298
name : failed-tests-${{matrix.vector.jobname}}
299
299
path : ${{env.FAILED_TEST_ARTIFACTS}}
@@ -321,21 +321,21 @@ jobs:
321
321
steps :
322
322
- uses : actions/checkout@v4
323
323
if : matrix.vector.jobname != 'linux32'
324
- - uses : actions/checkout@v1
324
+ - uses : actions/checkout@v1 # cannot be upgraded because Node.js Actions aren't supported in this container
325
325
if : matrix.vector.jobname == 'linux32'
326
326
- run : ci/install-docker-dependencies.sh
327
327
- run : ci/run-build-and-tests.sh
328
328
- run : ci/print-test-failures.sh
329
329
if : failure() && env.FAILED_TEST_ARTIFACTS != ''
330
330
- name : Upload failed tests' directories
331
331
if : failure() && env.FAILED_TEST_ARTIFACTS != '' && matrix.vector.jobname != 'linux32'
332
- uses : actions/upload-artifact@v3
332
+ uses : actions/upload-artifact@v4
333
333
with :
334
334
name : failed-tests-${{matrix.vector.jobname}}
335
335
path : ${{env.FAILED_TEST_ARTIFACTS}}
336
336
- name : Upload failed tests' directories
337
337
if : failure() && env.FAILED_TEST_ARTIFACTS != '' && matrix.vector.jobname == 'linux32'
338
- uses : actions/upload-artifact@v1
338
+ uses : actions/upload-artifact@v1 # cannot be upgraded because Node.js Actions aren't supported in this container
339
339
with :
340
340
name : failed-tests-${{matrix.vector.jobname}}
341
341
path : ${{env.FAILED_TEST_ARTIFACTS}}
0 commit comments