Skip to content

Commit

Permalink
Update version of upload-artifact and dowload-artifact to v4
Browse files Browse the repository at this point in the history
The `v3` of the `actions/upload-artifact` and `actions/download-artifact` actions
got
[deprecated](https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/)
causing possible failure of workflow execution. We're upgrading to `v4` of
the actions. Although there are some breaking changes in `v4` compared to `v3`,
they do not affect our setup.
  • Loading branch information
michalinacienciala committed Feb 3, 2025
1 parent 0c74099 commit 02fb907
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
version: ${{ steps.npm-version-bump.outputs.version }}

- name: Upload files needed for etherscan verification
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Artifacts for etherscan verifcation
path: |
Expand All @@ -171,7 +171,7 @@ jobs:
- uses: actions/checkout@v3

- name: Download files needed for etherscan verification
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Artifacts for etherscan verifcation

Expand Down

0 comments on commit 02fb907

Please sign in to comment.