From e15ee172085135d1503fbff96bbaaeffb248ab39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 19:02:29 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmarks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 763a818d1..64a538ea7 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -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) @@ -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