From 34620f1c025f844b17ace857bb6e5371c6820dee Mon Sep 17 00:00:00 2001 From: petetronic <1178561+petetronic@users.noreply.github.com> Date: Tue, 5 Nov 2024 16:55:25 -0500 Subject: [PATCH 1/2] Update action to use upload-artifact v4 GitHub announced that v3 of actions/upload-artifact is EOL and would start brownouts on November 14th. This small change moves to v4 of this action. --- .github/actions/build-vsix/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-vsix/action.yml b/.github/actions/build-vsix/action.yml index fc3233b06eff..929ecb31a6d3 100644 --- a/.github/actions/build-vsix/action.yml +++ b/.github/actions/build-vsix/action.yml @@ -87,7 +87,7 @@ runs: shell: bash - name: Upload VSIX - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ inputs.artifact_name }} path: ${{ inputs.vsix_name }} From 82b346a6ac15a8bd46a37a15193423ee3e10120c Mon Sep 17 00:00:00 2001 From: petetronic <1178561+petetronic@users.noreply.github.com> Date: Wed, 6 Nov 2024 09:01:46 -0500 Subject: [PATCH 2/2] Also update download-artifact action to v4 per pending EOL of v3 --- .github/actions/smoke-tests/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/smoke-tests/action.yml b/.github/actions/smoke-tests/action.yml index d4ac73b1a803..81cb7d2bc500 100644 --- a/.github/actions/smoke-tests/action.yml +++ b/.github/actions/smoke-tests/action.yml @@ -43,7 +43,7 @@ runs: # Bits from the VSIX are reused by smokeTest.ts to speed things up. - name: Download VSIX - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ inputs.artifact_name }}