Skip to content

Commit f62abac

Browse files
authored
build(deps): bump actions/download-artifact from 3 to 4 (#4794)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.
2 parents 82f73c8 + 3a6b997 commit f62abac

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
- name: zip up tracked files
124124
run: git archive -o artifacts/tracked.tar.gz HEAD
125125
- name: upload tracked files and build artifacts
126-
uses: actions/upload-artifact@v3
126+
uses: actions/upload-artifact@v4
127127
with:
128128
name: windows-artifacts
129129
path: artifacts
@@ -140,7 +140,7 @@ jobs:
140140
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
141141
steps:
142142
- name: download tracked files and build artifacts
143-
uses: actions/download-artifact@v3
143+
uses: actions/download-artifact@v4
144144
with:
145145
name: windows-artifacts
146146
path: ${{github.workspace}}
@@ -157,7 +157,7 @@ jobs:
157157
run: ci/print-test-failures.sh
158158
- name: Upload failed tests' directories
159159
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
160-
uses: actions/upload-artifact@v3
160+
uses: actions/upload-artifact@v4
161161
with:
162162
name: failed-tests-windows
163163
path: ${{env.FAILED_TEST_ARTIFACTS}}
@@ -211,7 +211,7 @@ jobs:
211211
- name: zip up tracked files
212212
run: git archive -o artifacts/tracked.tar.gz HEAD
213213
- name: upload tracked files and build artifacts
214-
uses: actions/upload-artifact@v3
214+
uses: actions/upload-artifact@v4
215215
with:
216216
name: vs-artifacts-${{ matrix.arch }}
217217
path: artifacts
@@ -229,7 +229,7 @@ jobs:
229229
steps:
230230
- uses: git-for-windows/setup-git-for-windows-sdk@v1
231231
- name: download tracked files and build artifacts
232-
uses: actions/download-artifact@v3
232+
uses: actions/download-artifact@v4
233233
with:
234234
name: vs-artifacts-x64
235235
path: ${{github.workspace}}
@@ -247,7 +247,7 @@ jobs:
247247
run: ci/print-test-failures.sh
248248
- name: Upload failed tests' directories
249249
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
250-
uses: actions/upload-artifact@v3
250+
uses: actions/upload-artifact@v4
251251
with:
252252
name: failed-tests-windows
253253
path: ${{env.FAILED_TEST_ARTIFACTS}}
@@ -304,7 +304,7 @@ jobs:
304304
run: ci/print-test-failures.sh
305305
- name: Upload failed tests' directories
306306
if: failure() && env.FAILED_TEST_ARTIFACTS != ''
307-
uses: actions/upload-artifact@v3
307+
uses: actions/upload-artifact@v4
308308
with:
309309
name: failed-tests-${{matrix.vector.jobname}}
310310
path: ${{env.FAILED_TEST_ARTIFACTS}}
@@ -341,13 +341,13 @@ jobs:
341341
run: ci/print-test-failures.sh
342342
- name: Upload failed tests' directories
343343
if: failure() && env.FAILED_TEST_ARTIFACTS != '' && matrix.vector.jobname != 'linux32'
344-
uses: actions/upload-artifact@v3
344+
uses: actions/upload-artifact@v4
345345
with:
346346
name: failed-tests-${{matrix.vector.jobname}}
347347
path: ${{env.FAILED_TEST_ARTIFACTS}}
348348
- name: Upload failed tests' directories
349349
if: failure() && env.FAILED_TEST_ARTIFACTS != '' && matrix.vector.jobname == 'linux32'
350-
uses: actions/upload-artifact@v1
350+
uses: actions/upload-artifact@v4
351351
with:
352352
name: failed-tests-${{matrix.vector.jobname}}
353353
path: ${{env.FAILED_TEST_ARTIFACTS}}

0 commit comments

Comments
 (0)