Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/chaos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Upload chaos results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: chaos-results
path: chaos/
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
npm run test:shard

- name: Upload coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-report-${{ matrix.shard }}
path: coverage/lcov.info
Expand Down Expand Up @@ -384,7 +384,7 @@ jobs:

- name: Upload bundle size report
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: bundle-size-report-${{ github.sha }}
path: bundle-size-report.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/invariant-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# ── Upload test results as artifact ───────────────────────────────
- name: Upload invariant test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: invariant-test-results
path: contracts/invariant-test-results.txt
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:

- name: Upload extended fuzz results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: extended-fuzz-results
path: contracts/extended-fuzz-results.txt
Expand Down
Loading