Skip to content
Merged
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/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:

- name: Upload criterion output
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: criterion-output
path: target/criterion/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
rivet-version: v0.3.0

- name: Upload archive
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: compliance-report
path: ${{ steps.report.outputs.archive-path }}
4 changes: 2 additions & 2 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:

- name: Upload crash artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: fuzz-artifacts-${{ matrix.target }}
path: fuzz/artifacts/${{ matrix.target }}/
Expand All @@ -83,7 +83,7 @@ jobs:

- name: Upload corpus
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: fuzz-corpus-${{ matrix.target }}
path: fuzz/corpus/${{ matrix.target }}/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/memory-profile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Upload profiling data
if: success() || failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: bytehound-profiles
path: memory-profiling_*.dat
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:

- name: Upload summaries
if: success() || failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: bytehound-summaries
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# fetch-reports can auto-generate data/sigil/{stats,artifacts}.json.
include-data-formats: true

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: compliance-report
path: ${{ steps.report.outputs.archive-path }}
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
# SHA256SUMS.txt covering every asset — matches the synth release flow.

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.asset_name }}
path: artifacts/*
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:

- name: Upload Build Artifacts (Bazel)
if: matrix.build-system == 'bazel'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: bazel-outputs-${{ matrix.os }}
path: |
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
echo "Verified keyless signature"

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: signed-wasm-artifacts
path: |
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:

- name: Upload Rekor Data (on failure)
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: rekor-fresh-data
path: rekor-data.txt
Expand Down Expand Up @@ -307,7 +307,7 @@ jobs:
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Upload HTML coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: coverage-html
path: coverage-html/
2 changes: 1 addition & 1 deletion .github/workflows/supply-chain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
echo "All mutants killed!"
- name: Upload mutants reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: mutants-reports
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wasm-signing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
-i "${{ steps.sign.outputs.signed_path }}"

- name: Upload signed WASM
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: signed-wasm-${{ github.sha }}
path: ${{ steps.sign.outputs.signed_path }}
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
run: wsc bundle inspect -i trust-bundle-${{ github.ref_name }}.json

- name: Upload trust bundle
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: trust-bundle-${{ github.ref_name }}
path: |
Expand Down
Loading