Skip to content

Commit aaf7932

Browse files
committed
fix: upgrade artifact actions from v3 to v4
GitHub deprecated actions/upload-artifact@v3 and actions/download-artifact@v3 as of April 2024. Upgrading to v4 to fix workflow failures. See: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
1 parent bd98c5a commit aaf7932

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/prepare-packages/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ runs:
5757
run: tar -czf /tmp/artifact.tar.gz .
5858

5959
- name: Upload artifact
60-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6161
with:
6262
name: ${{ inputs.artifact-name }}
6363
path: /tmp/artifact.tar.gz

.github/actions/publish/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ runs:
4343
scope: ${{ inputs.scope }}
4444

4545
- name: Download artifact
46-
uses: actions/download-artifact@v3
46+
uses: actions/download-artifact@v4
4747
with:
4848
name: ${{ inputs.artifact-name }}
4949

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
continue-on-error: false
1313
permissions:
14-
contents: write # Required to create release branches and tags
14+
contents: write # Required to create release branches and tags
1515
pull-requests: write # Required to create release PRs
1616
outputs:
1717
releaseReady: ${{ steps.releaseOutputs.outputs.releaseReady }}

0 commit comments

Comments
 (0)