Skip to content

Commit 3b5ac71

Browse files
authored
Merge pull request #6 from actions/pje/upgrade-upload-artifact-to-v4
Upgrade actions/upload-artifact to v4
2 parents 42c4c32 + f1f4280 commit 3b5ac71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-release-alpine-nodejs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
docker run --rm -v $RUNNER_TEMP/alpine_node:/node_output alpine_nodejs:${{github.event.inputs.NodeVersion}}
3333
ls -l -R $RUNNER_TEMP/alpine_node
3434
- name: Upload alpine node.js
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
3838
path: ${{runner.temp}}/alpine_node/node-${{github.event.inputs.NodeVersion}}-alpine-x64.tar.gz
@@ -44,7 +44,7 @@ jobs:
4444
container: alpine
4545
steps:
4646
- name: Download alpine node.js
47-
uses: actions/download-artifact@v3
47+
uses: actions/download-artifact@v4
4848
with:
4949
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
5050
- run: |
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
steps:
6464
- name: Download alpine node.js
65-
uses: actions/download-artifact@v3
65+
uses: actions/download-artifact@v4
6666
with:
6767
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
6868
# Create GitHub release

0 commit comments

Comments
 (0)