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
4 changes: 2 additions & 2 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
rustup target add wasm32-unknown-unknown
cd e2e && cargo bench -- --save-baseline devel
- name: Upload baseline artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: criterion-baseline-devel
path: target/criterion
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
cd e2e && cargo bench | grep -v ignored | tee bench_output.txt

- name: Upload full report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: criterion-report-${{ github.sha }}
path: target/criterion
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
fail_ci_if_error: true

- name: Archive code coverage results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: code-coverage-report
path: cobertura.xml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ jobs:
shell: bash

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: genesis-${{ needs.extract-version.outputs.VERSION }}.json.gz
path: genesis-${{ needs.extract-version.outputs.VERSION }}.json.gz

- name: Upload signature
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: genesis-${{ needs.extract-version.outputs.VERSION }}.json.gz.asc
path: genesis-${{ needs.extract-version.outputs.VERSION }}.json.gz.asc
Expand Down
Loading