From 29c1ce63dc7659f17ed1e4cd4ef55d3f1d230fbc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 05:12:15 +0000 Subject: [PATCH] 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/go.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5534af5..68eeaaa 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -84,7 +84,7 @@ jobs: - name: Download main branch integration benchmark results id: cache-integration-main if: github.event_name == 'pull_request' - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: main-integration-benchmark-results.txt key: main-integration-benchmark-results-dummy @@ -120,7 +120,7 @@ jobs: - name: Save main branch integration benchmark results if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: main-integration-benchmark-results.txt key: main-integration-benchmark-results-${{ github.sha }} @@ -173,7 +173,7 @@ jobs: - name: Download main branch benchmark results id: cache-main if: github.event_name == 'pull_request' - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: main-benchmark-results.txt key: benchmark-main-${{ runner.os }}-dummy @@ -217,7 +217,7 @@ jobs: - name: Save main branch benchmark results if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: main-benchmark-results.txt key: benchmark-main-${{ runner.os }}-${{ github.sha }}