Skip to content

Commit 5a458af

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 2edf945 commit 5a458af

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
@@ -216,7 +216,7 @@ jobs:
216216
version: ${{ steps.npm-version-bump.outputs.version }}
217217

218218
- name: Upload files needed for etherscan verification
219-
uses: actions/upload-artifact@v3
219+
uses: actions/upload-artifa4
220220
with:
221221
name: Artifacts for etherscan verification
222222
path: |
@@ -234,7 +234,7 @@ jobs:
234234
- uses: actions/checkout@v3
235235

236236
- name: Download files needed for etherscan verification
237-
uses: actions/download-artifact@v3
237+
uses: actions/download-artifact@v4
238238
with:
239239
name: Artifacts for etherscan verification
240240
path: ./solidity

0 commit comments

Comments
 (0)