From 5c68375358e908e19f36bf2f09ce68517c01b623 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 22:47:43 +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/ci.yaml | 4 ++-- .github/workflows/release.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 59a64d31..005e8443 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,7 +27,7 @@ jobs: go-version: "${{ env.GO_VERSION }}" cache: true - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: hack/tools/bin key: ${{ runner.os }}-tools-bin-${{ matrix.target }}-${{ hashFiles('Makefile') }} @@ -35,7 +35,7 @@ jobs: ${{ runner.os }}-tools-bin-${{ matrix.target }}- ${{ runner.os }}-tools-bin- - - uses: actions/cache@v3 + - uses: actions/cache@v4 if: ${{ matrix.target == 'test' }} with: path: /tmp/kubebuilder-tools-*.tar.gz diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 32a77a21..fef09c6b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,7 +29,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Cache Docker layers - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-manager-${{ github.sha }} @@ -91,7 +91,7 @@ jobs: - uses: ./.github/actions/setup-go - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: hack/tools/bin key: ${{ runner.os }}-tools-bin-release-${{ hashFiles('Makefile') }}