Skip to content

Commit

Permalink
chore(deps): bump actions/upload-artifact from 3 to 4 (#1122)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Dec 20, 2023
1 parent d69e032 commit 436e2e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Archive built scripts
# TODO: upload only once
# if: steps.gwos-cache.outputs.cache-hit != 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: component.gwos-${{ steps.prepare.outputs.gwos-filehash }}
path: |
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- name: Archive godwoken-polyjuice binaries
# TODO: upload only once
# if: steps.godwoken-polyjuice-cache.outputs.cache-hit != 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: component.gwos-evm-${{ steps.prepare.outputs.gwos-evm-filehash }}
path: |
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
- name: Archive godwoken binaries
# TODO: upload only once
# if: steps.godwoken-cache.outputs.cache-hit != 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: component.godwoken-${{ matrix.features || 'default' }}-${{ hashFiles('crates/**') }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gwos-evm-fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
mv corpus-new corpus-cache
- name: Archive inputs that triggered crashes or sanitizer failures
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: fuzzing-inputs
Expand All @@ -103,7 +103,7 @@ jobs:
polyjuice-tests/fuzz/timeout-*
polyjuice-tests/fuzz/oom-*
- name: Archive corpus
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: corpus
path: |
Expand Down

0 comments on commit 436e2e1

Please sign in to comment.