Skip to content

Commit 5534e9e

Browse files
chore(deps): bump actions/download-artifact from 4 to 5
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9f5314a commit 5534e9e

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/nodejs.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
uses: actions/checkout@v4
9393
- name: fetch build artifact
9494
# see https://github.com/actions/download-artifact
95-
uses: actions/download-artifact@v4
95+
uses: actions/download-artifact@v5
9696
with:
9797
name: dist.d
9898
path: dist.d
@@ -235,7 +235,7 @@ jobs:
235235
echo "::endgroup::"
236236
- name: fetch build artifact
237237
# see https://github.com/actions/download-artifact
238-
uses: actions/download-artifact@v4
238+
uses: actions/download-artifact@v5
239239
with:
240240
name: dist.node
241241
path: dist.node
@@ -285,7 +285,7 @@ jobs:
285285
echo "::endgroup::"
286286
- name: fetch build artifact
287287
# see https://github.com/actions/download-artifact
288-
uses: actions/download-artifact@v4
288+
uses: actions/download-artifact@v5
289289
with:
290290
name: dist.node
291291
path: dist.node
@@ -315,7 +315,7 @@ jobs:
315315
steps:
316316
- name: fetch test artifacts
317317
# see https://github.com/actions/download-artifact
318-
uses: actions/download-artifact@v4
318+
uses: actions/download-artifact@v5
319319
with:
320320
pattern: '${{ env.TESTS_REPORTS_ARTIFACT }}_*'
321321
merge-multiple: true
@@ -353,7 +353,7 @@ jobs:
353353
node-version: ${{ env.NODE_ACTIVE_LTS }}
354354
- name: fetch build artifact 'node'
355355
# see https://github.com/actions/download-artifact
356-
uses: actions/download-artifact@v4
356+
uses: actions/download-artifact@v5
357357
with:
358358
name: dist.node
359359
path: dist.node
@@ -404,13 +404,13 @@ jobs:
404404
node-version: ${{ env.NODE_ACTIVE_LTS }}
405405
- name: fetch build artifact 'd'
406406
# see https://github.com/actions/download-artifact
407-
uses: actions/download-artifact@v4
407+
uses: actions/download-artifact@v5
408408
with:
409409
name: dist.d
410410
path: dist.d
411411
- name: fetch build artifact 'node'
412412
# see https://github.com/actions/download-artifact
413-
uses: actions/download-artifact@v4
413+
uses: actions/download-artifact@v5
414414
with:
415415
name: dist.node
416416
path: dist.node
@@ -464,7 +464,7 @@ jobs:
464464
node-version: ${{ env.NODE_ACTIVE_LTS }}
465465
- name: fetch build artifact 'node'
466466
# see https://github.com/actions/download-artifact
467-
uses: actions/download-artifact@v4
467+
uses: actions/download-artifact@v5
468468
with:
469469
name: dist.web
470470
path: dist.web

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
steps:
177177
- name: fetch release result
178178
# see https://github.com/actions/download-artifact
179-
uses: actions/download-artifact@v4
179+
uses: actions/download-artifact@v5
180180
with:
181181
name: ${{ env.PACKED_ARTIFACT }}
182182
path: ${{ env.ASSETS_DIR }}

0 commit comments

Comments
 (0)