From 998220a6c4b0576e5c96e4debcd6ecaec474eb55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 11:02:58 +0000 Subject: [PATCH] ci: :arrow_up: bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache 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 3ecc0cb..01135ef 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@v3 + uses: actions/cache@v4 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@v3 + uses: actions/cache@v4 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 76e6abb..61482a2 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@v3 + uses: actions/cache@v4 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@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-mod }} key: ${{ runner.os }}-gomod-test-${{ hashFiles('**/go.sum') }}