Upgrade actions/upload-artifact to v4
Versions at or below v3 are deprecated and will be unusable in November. https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
This commit is contained in:
@@ -32,7 +32,7 @@ jobs:
|
|||||||
docker run --rm -v $RUNNER_TEMP/alpine_node:/node_output alpine_nodejs:${{github.event.inputs.NodeVersion}}
|
docker run --rm -v $RUNNER_TEMP/alpine_node:/node_output alpine_nodejs:${{github.event.inputs.NodeVersion}}
|
||||||
ls -l -R $RUNNER_TEMP/alpine_node
|
ls -l -R $RUNNER_TEMP/alpine_node
|
||||||
- name: Upload alpine node.js
|
- name: Upload alpine node.js
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
|
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
|
||||||
path: ${{runner.temp}}/alpine_node/node-${{github.event.inputs.NodeVersion}}-alpine-x64.tar.gz
|
path: ${{runner.temp}}/alpine_node/node-${{github.event.inputs.NodeVersion}}-alpine-x64.tar.gz
|
||||||
@@ -44,7 +44,7 @@ jobs:
|
|||||||
container: alpine
|
container: alpine
|
||||||
steps:
|
steps:
|
||||||
- name: Download alpine node.js
|
- name: Download alpine node.js
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
|
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
|
||||||
- run: |
|
- run: |
|
||||||
@@ -62,7 +62,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Download alpine node.js
|
- name: Download alpine node.js
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
|
name: alpine_nodejs_${{github.event.inputs.NodeVersion}}
|
||||||
# Create GitHub release
|
# Create GitHub release
|
||||||
|
|||||||
Reference in New Issue
Block a user