Skip to content

Commit 02fb907

Browse files
Update version of upload-artifact and dowload-artifact to v4
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.
1 parent 0c74099 commit 02fb907

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/contracts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
version: ${{ steps.npm-version-bump.outputs.version }}
157157

158158
- name: Upload files needed for etherscan verification
159-
uses: actions/upload-artifact@v3
159+
uses: actions/upload-artifact@v4
160160
with:
161161
name: Artifacts for etherscan verifcation
162162
path: |
@@ -171,7 +171,7 @@ jobs:
171171
- uses: actions/checkout@v3
172172

173173
- name: Download files needed for etherscan verification
174-
uses: actions/download-artifact@v3
174+
uses: actions/download-artifact@v4
175175
with:
176176
name: Artifacts for etherscan verifcation
177177

0 commit comments

Comments
 (0)