Skip to content

Commit

Permalink
chore(ci): bump artifact actions to v4 (#193)
Browse files Browse the repository at this point in the history
Bumps upload-artifact and download-artifact actions to v4, as v3 is deprecated.
  • Loading branch information
zhijie-yang authored Jan 21, 2025
1 parent 9d9d214 commit b6de199
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
echo "ARCHIVE_FILE_SHA384=${ARCHIVE_FILE_SHA384}" >>$GITHUB_OUTPUT
- name: Upload archive as Actions artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.archive.outputs.ARCHIVE_FILE }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/snap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: snapcore/action-build@v1

- name: Attach chisel snap to GH workflow execution
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.build-chisel-snap.outputs.snap }}
path: ${{ steps.build-chisel-snap.outputs.snap }}
Expand All @@ -40,7 +40,7 @@ jobs:
chisel-version: ${{ steps.install-chisel-snap.outputs.version }}

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ${{ needs.build.outputs.chisel-snap }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
fi
- name: Upload HTML test coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
continue-on-error: true
with:
Expand Down

0 comments on commit b6de199

Please sign in to comment.