From a9f08c060862e64cde7e98575144f5e145e31b5d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 03:42:36 +0000 Subject: [PATCH] ci: :arrow_up: bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/go-build.yaml | 4 ++-- .github/workflows/go-test.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/go-build.yaml b/.github/workflows/go-build.yaml index e3f1fea..04781d6 100644 --- a/.github/workflows/go-build.yaml +++ b/.github/workflows/go-build.yaml @@ -24,7 +24,7 @@ jobs: mkdir -p "$(go env GOCACHE)" - name: Go Build Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.go-cache-paths.outputs.go-build }} key: ${{ runner.os }}-gobuild-build-${{ github.sha }} @@ -32,7 +32,7 @@ jobs: ${{ runner.os }}-gobuild-build - name: Go Mod Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.go-cache-paths.outputs.go-mod }} key: ${{ runner.os }}-gomod-build-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/go-test.yaml b/.github/workflows/go-test.yaml index f4fac71..6504ae7 100644 --- a/.github/workflows/go-test.yaml +++ b/.github/workflows/go-test.yaml @@ -25,7 +25,7 @@ jobs: mkdir -p "$(go env GOCACHE)" - name: Go Build Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.go-cache-paths.outputs.go-build }} key: ${{ runner.os }}-gobuild-test-${{ github.sha }} @@ -33,7 +33,7 @@ jobs: ${{ runner.os }}-gobuild-test - name: Go Mod Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.go-cache-paths.outputs.go-mod }} key: ${{ runner.os }}-gomod-test-${{ hashFiles('**/go.sum') }}