Skip to content

Commit

Permalink
Upgrade actions/upload-artifact and actions/download-artifact to v4 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
elopez authored Jan 3, 2024
1 parent 0d95885 commit b7f5e79
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
run: GZIP=-9 tar -czf echidna.tar.gz -C $APPDATA/local/bin/ echidna.exe

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: echidna-${{ runner.os }}
path: echidna.tar.gz
Expand All @@ -172,7 +172,7 @@ jobs:
- name: Upload testsuite
if: runner.os != 'macOS'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: echidna-testsuite-${{ runner.os }}
path: echidna-testsuite*
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
SOLC_VER: ${{ matrix.solc }}

- name: Download testsuite
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: echidna-testsuite-${{ runner.os }}

Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ jobs:
tar -czf "echidna-${{ steps.version.outputs.version }}-${{ matrix.tuple }}.tar.gz" -C ./redistributable/bin/ echidna
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: echidna-redistributable
name: echidna-redistributable-${{ matrix.tuple }}
path: echidna-${{ steps.version.outputs.version }}-${{ matrix.tuple }}.tar.gz

release:
Expand All @@ -92,9 +92,10 @@ jobs:
uses: actions/checkout@v4

- name: Download binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: echidna-redistributable
pattern: echidna-redistributable-*
merge-multiple: true

- name: Sign binaries
uses: sigstore/gh-action-sigstore-python@v2.1.1
Expand Down

0 comments on commit b7f5e79

Please sign in to comment.