From 639ae5f8afc95f21b21826d4f0e88ba5692ec993 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 03:22:29 +0000 Subject: [PATCH] Bump actions/cache from 2 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 2 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/v2...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/coverage.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 35ce5168b4..aa413116a7 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v2 - name: Cache go module - uses: actions/cache@v2 + uses: actions/cache@v5 id: cache-gomodules with: path: ~/go/pkg/mod diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f1a3a89291..1b1453199d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@v2 - name: Cache go module - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}