From 7bb619735c06420fa46d1fb34fce90c55e5464ed Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Mon, 11 Mar 2024 10:30:25 -0400 Subject: [PATCH] ignore cache-hit --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index c5bf21c..cb2c623 100644 --- a/action.yml +++ b/action.yml @@ -149,7 +149,7 @@ runs: - name: Save dnf cache env: dnf_cache_key: dnf-${{ inputs.version }} - if: inputs.enable_cache_dnf == 'true' && steps.load_dnf_cache.outputs.cache-hit == 'false' + if: inputs.enable_cache_dnf == 'true' uses: actions/cache/save@v4 with: path: /cache/dnf_new @@ -158,7 +158,7 @@ runs: - name: Save skopeo cache env: skopeo_cache_key: skopeo-${{ inputs.image_name }}-${{ inputs.version || inputs.image_tag }} - if: inputs.enable_cache_skopeo == 'true' && steps.load_skopeo_cache.outputs.cache-hit == 'false' + if: inputs.enable_cache_skopeo == 'true' uses: actions/cache/save@v4 with: path: /cache/skopeo