Skip to content
Merged
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/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# restore-keys finds the most recent baseline from main
- name: Download main branch baseline
id: baseline-cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: target/criterion
# Try to find an exact match first (won't happen for PRs)
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
# PRs use restore-keys to find the most recent one
- name: Save Baseline to Main
if: github.ref == 'refs/heads/main'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: target/criterion
# Include SHA so each main commit has its own baseline
Expand Down