Skip to content

Commit 677bd2f

Browse files
authored
Update actions/download-artifacts to v4 (#171)
1 parent 918c1bd commit 677bd2f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ jobs:
5252
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5353
steps:
5454
- uses: actions/checkout@v2
55-
- uses: actions/download-artifact@v3
55+
- uses: actions/download-artifact@v4
56+
with:
57+
merge-multiple: true
5658
- uses: actions/setup-node@v3
5759
with:
5860
registry-url: 'https://registry.npmjs.org'

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2424
steps:
2525
- uses: actions/checkout@v2
26-
- uses: actions/download-artifact@v3
26+
- uses: actions/download-artifact@v4
27+
with:
28+
merge-multiple: true
2729
- uses: actions/setup-node@v3
2830
with:
2931
registry-url: 'https://registry.npmjs.org'

0 commit comments

Comments
 (0)