From 5c74eecb938e00704790d4265c647dab35174b6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 19:42:17 +0000 Subject: [PATCH] build(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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f8ef2859..d30d64d5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,7 +61,7 @@ jobs: echo "bazel_repository_cache=$(bazel info repository_cache)" >> $GITHUB_ENV echo "bazel_output_base=$(bazel info output_base)" >> $GITHUB_ENV - name: Cache bazel build of external repositories - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ env.bazel_output_base }}/external @@ -69,7 +69,7 @@ jobs: restore-keys: | bazel-build-cache-${{steps.setup_go.outputs.go-version}} - name: Cache bazel external repositories - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ env.bazel_repository_cache }}