Skip to content

Commit 0b48389

Browse files
committed
Update upload-artifact and download-artifact actions
1 parent 6da1304 commit 0b48389

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Package
3737
run: npm pack
3838
- name: Upload artifact
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: build-${{ github.sha }}
4242
if-no-files-found: error

.github/workflows/_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
install_dependencies: 'false'
3535
node_auth_token: ${{ secrets.node_auth_token }}
3636
- name: Download artifact
37-
uses: actions/download-artifact@v3
37+
uses: actions/download-artifact@v4
3838
with:
3939
name: ${{ inputs.artifact_name }}
4040
path: .

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
node-version: ${{ matrix.node }}
8181
- name: Download artifact
82-
uses: actions/download-artifact@v3
82+
uses: actions/download-artifact@v4
8383
with:
8484
name: ${{ needs.build.outputs.artifact_name }}
8585
path: .

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
fetch-depth: 0
2727
- name: Download artifact
28-
uses: actions/download-artifact@v3
28+
uses: actions/download-artifact@v4
2929
with:
3030
name: ${{ needs.build.outputs.artifact_name }}
3131
path: .

0 commit comments

Comments
 (0)