Merge pull request #6 from actions/pje/upgrade-upload-artifact-to-v4

Upgrade actions/upload-artifact to v4
This commit is contained in:
Tingluo Huang
2024-10-10 16:08:49 -04:00
committed by GitHub

View File

@@ -32,7 +32,7 @@ jobs:
docker run --rm -v $RUNNER_TEMP/alpine_node:/node_output alpine_nodejs:${{github.event.inputs.NodeVersion}}
ls -l -R $RUNNER_TEMP/alpine_node
- name: Upload alpine node.js
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
path: ${{runner.temp}}/alpine_node/node-${{github.event.inputs.NodeVersion}}-alpine-x64.tar.gz
@@ -44,7 +44,7 @@ jobs:
container: alpine
steps:
- name: Download alpine node.js
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
- run: |
@@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download alpine node.js
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
# Create GitHub release