From 554bde71a1b3f6f8249562eef2397b7f79b82095 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 03:10:51 +0000 Subject: [PATCH] ci: :arrow_up: 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-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 c7cc5f5..0790da8 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@v4 + uses: actions/cache@v5 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@v4 + uses: actions/cache@v5 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 ab80e65..e6d5c86 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@v4 + uses: actions/cache@v5 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@v4 + uses: actions/cache@v5 with: path: ${{ steps.go-cache-paths.outputs.go-mod }} key: ${{ runner.os }}-gomod-test-${{ hashFiles('**/go.sum') }}