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 }}