From cbcdebf0eb13066db4fe04a17a513c60b90816c4 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 19 Dec 2025 19:33:39 +0100 Subject: [PATCH] chore(deps): update actions/cache action to v5 (#18) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://github.com/actions/cache) | action | major | `v4` -> `v5` | --- ### Release Notes
actions/cache (actions/cache) ### [`v5`](https://github.com/actions/cache/compare/v4...v5) [Compare Source](https://github.com/actions/cache/compare/v4...v5)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.t000-n.de/t.behrendt/trivy-actions/pulls/18 Reviewed-by: t.behrendt Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- setup-db/action.yaml | 2 +- setup-trivy/action.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup-db/action.yaml b/setup-db/action.yaml index d4d99ed..d38083f 100644 --- a/setup-db/action.yaml +++ b/setup-db/action.yaml @@ -24,7 +24,7 @@ runs: run: | echo "current-date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT - id: restore-db - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5 with: path: ${{ inputs.cache-dir }} key: trivy-db-${{ steps.current-date.outputs.current-date }} diff --git a/setup-trivy/action.yaml b/setup-trivy/action.yaml index 702e2d8..6137d2a 100644 --- a/setup-trivy/action.yaml +++ b/setup-trivy/action.yaml @@ -40,7 +40,7 @@ runs: echo "VERSION=$VERSION" >> $GITHUB_OUTPUT - name: Cache Trivy binary id: cache-trivy - uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 + uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5 with: path: /usr/local/bin/trivy key: trivy-${{ steps.version.outputs.version }}-${{ steps.arch.outputs.arch }}