From 7482c4d1641d7ba8426b2bb12bc922727ab445b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Aug 2026 08:06:05 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/e2e.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index af89fef..42b0f32 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -25,13 +25,13 @@ jobs: # Look for a CLI that's made for this PR - name: Fetch built CLI id: cli-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./_output/linux/amd64/bin/commitizen # The cache key a combination of the current PR number and the commit SHA key: commitizen-${{ github.event.pull_request.number }}-${{ github.sha }} - name: Fetch cached go modules - uses: actions/cache@v5 + uses: actions/cache@v6 if: steps.cli-cache.outputs.cache-hit != 'true' with: path: ~/go/pkg/mod @@ -58,7 +58,7 @@ jobs: uses: actions/checkout@v6 - name: Fetch built CLI id: cli-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./_output/linux/amd64/bin/commitizen key: commitizen-${{ github.event.pull_request.number }}-${{ github.sha }}