From e1d3d2d1b229943ae35ce8aeaf587342e51ae8a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Jun 2026 15:41:28 +0000 Subject: [PATCH] chore(deps): 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/e2e.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 9a4b2d3..decd3a6 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -29,7 +29,7 @@ jobs: echo "modcache=$(go env GOMODCACHE)" >> $GITHUB_ENV - name: Set up cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ${{ env.cache }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 95c57d9..ae01729 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: echo "goversion=$(go env GOVERSION)" >> $GITHUB_ENV - name: Set up cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ${{ env.cache }} @@ -92,7 +92,7 @@ jobs: run: sed 's/:main/:${{ env.sha }}/g' .k8s/deployment.yml > .k8s/deployment.release.yml - name: Set up kubectl cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/kubectl key: kubectl-${{ env.KUBECTL_VERSION }}