From 307b53625f2f529a6a47ed02c86263648dc1857e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 06:38:38 +0000 Subject: [PATCH] chore(deps): 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/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 820349449..2e47d1404 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: - name: Restore cache id: cache-go-modules if: github.event_name == 'pull_request' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-${{ github.ref_name }}-go-modules-${{ hashFiles('**/go.sum') }} @@ -67,7 +67,7 @@ jobs: - name: Restore cache id: cache-go-modules if: github.event_name == 'pull_request' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-${{ github.ref_name }}-go-modules-${{ hashFiles('**/go.sum') }} @@ -301,7 +301,7 @@ jobs: cache: false - name: Restore cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: | ~/.cache/go-build @@ -378,7 +378,7 @@ jobs: - name: Cache Go if: github.event_name != 'pull_request' - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/go-build @@ -389,7 +389,7 @@ jobs: - name: Restore cache if: github.event_name == 'pull_request' - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: | ~/.cache/go-build