From 34d09a6ae9b2345ff758db5f3e20334a53ee82b2 Mon Sep 17 00:00:00 2001 From: "we-renovate[bot]" <162337394+we-renovate[bot]@users.noreply.github.com> Date: Sun, 6 Oct 2024 00:01:59 +0000 Subject: [PATCH] fix(deps): update actions/cache action to v4.1.0 --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 5603c96..82e5fc5 100644 --- a/action.yml +++ b/action.yml @@ -92,7 +92,7 @@ runs: - name: Restore trivy cache id: cache-trivy-restore - uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 + uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0 with: path: .trivy key: ${{ runner.os }}-trivy-${{ github.job }}-${{ github.run_id }} @@ -193,7 +193,7 @@ runs: continue-on-error: true # ignore error (e.g. if cached was already saved in same workflow run) if: always() # always save id: cache-trivy-save - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 + uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0 with: path: .trivy key: ${{ steps.cache-trivy-restore.outputs.cache-primary-key }}