Skip to content

Commit 7f59795

Browse files
build(deps): bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7d5b25a commit 7f59795

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
run: GZIP=-9 tar -czf echidna.tar.gz -C $APPDATA/local/bin/ echidna.exe
189189

190190
- name: Upload artifact
191-
uses: actions/upload-artifact@v4
191+
uses: actions/upload-artifact@v5
192192
with:
193193
name: echidna-${{ runner.os }}
194194
path: echidna.tar.gz
@@ -202,7 +202,7 @@ jobs:
202202
203203
- name: Upload testsuite
204204
if: runner.os != 'macOS'
205-
uses: actions/upload-artifact@v4
205+
uses: actions/upload-artifact@v5
206206
with:
207207
name: echidna-testsuite-${{ runner.os }}
208208
path: echidna-testsuite*

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
DIGEST_UBUNTU: "${{ steps.build-ubuntu.outputs.digest }}"
8888

8989
- name: Upload digest
90-
uses: actions/upload-artifact@v4
90+
uses: actions/upload-artifact@v5
9191
with:
9292
name: digests-${{ env.PLATFORM_PAIR }}
9393
path: ${{ runner.temp }}/digests/*

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
tar -czf "echidna-${{ steps.version.outputs.version }}-${{ matrix.tuple }}.tar.gz" -C ./redistributable/bin/ echidna
7171
7272
- name: Upload artifact
73-
uses: actions/upload-artifact@v4
73+
uses: actions/upload-artifact@v5
7474
with:
7575
name: echidna-redistributable-${{ matrix.tuple }}
7676
path: echidna-${{ steps.version.outputs.version }}-${{ matrix.tuple }}.tar.gz

0 commit comments

Comments
 (0)