From ac57425c8dcf5721b5e7cb00a169b15c0fb22ef5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 08:09:04 +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.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 3af6c35..af89fef 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@v4 + uses: actions/cache@v5 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@v4 + uses: actions/cache@v5 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@v4 + uses: actions/cache@v5 with: path: ./_output/linux/amd64/bin/commitizen key: commitizen-${{ github.event.pull_request.number }}-${{ github.sha }}