From f1f4280c1922a75553c1e572f1031850bf1dd3b4 Mon Sep 17 00:00:00 2001 From: Patrick Ellis <319655+pje@users.noreply.github.com> Date: Mon, 13 May 2024 16:49:38 -0400 Subject: [PATCH] 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/ --- .github/workflows/build-release-alpine-nodejs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-release-alpine-nodejs.yml b/.github/workflows/build-release-alpine-nodejs.yml index fb081c1..864d9a8 100644 --- a/.github/workflows/build-release-alpine-nodejs.yml +++ b/.github/workflows/build-release-alpine-nodejs.yml @@ -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