From 554bce221b53453e4486d7820993dcb3f331f23e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Jan 2026 21:44:17 -0500 Subject: [PATCH] Bump actions/cache from 4 to 5 (#187) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 3615f05..e1f0cf6 100644 --- a/action.yml +++ b/action.yml @@ -126,7 +126,7 @@ runs: env: dnf_cache_key: dnf-${{ inputs.version }} if: inputs.enable_cache_dnf == 'true' - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: /cache/dnf key: ${{ inputs.dnf_cache_key || env.dnf_cache_key }} @@ -136,7 +136,7 @@ runs: env: skopeo_cache_key: skopeo-${{ inputs.image_name }}-${{ inputs.version || inputs.image_tag }} if: inputs.enable_cache_skopeo == 'true' - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: /cache/skopeo key: ${{ inputs.skopeo_cache_key || env.skopeo_cache_key }} @@ -244,7 +244,7 @@ runs: env: dnf_cache_key: dnf-${{ inputs.version }} if: inputs.enable_cache_dnf == 'true' && steps.load_dnf_cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: /cache/dnf_new key: ${{ inputs.dnf_cache_key || env.dnf_cache_key }} @@ -253,7 +253,7 @@ runs: env: skopeo_cache_key: skopeo-${{ inputs.image_name }}-${{ inputs.version || inputs.image_tag }} if: inputs.enable_cache_skopeo == 'true' && steps.load_dnf_cache.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: /cache/skopeo key: ${{ inputs.skopeo_cache_key || env.skopeo_cache_key }}