1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2026-02-09 06:05:14 +01:00

Bump actions/cache from 4 to 5 (#187)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2026-01-23 21:44:17 -05:00 committed by GitHub
parent 4ab1e18f83
commit 554bce221b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,7 +126,7 @@ runs:
env: env:
dnf_cache_key: dnf-${{ inputs.version }} dnf_cache_key: dnf-${{ inputs.version }}
if: inputs.enable_cache_dnf == 'true' if: inputs.enable_cache_dnf == 'true'
uses: actions/cache/restore@v4 uses: actions/cache/restore@v5
with: with:
path: /cache/dnf path: /cache/dnf
key: ${{ inputs.dnf_cache_key || env.dnf_cache_key }} key: ${{ inputs.dnf_cache_key || env.dnf_cache_key }}
@ -136,7 +136,7 @@ runs:
env: env:
skopeo_cache_key: skopeo-${{ inputs.image_name }}-${{ inputs.version || inputs.image_tag }} skopeo_cache_key: skopeo-${{ inputs.image_name }}-${{ inputs.version || inputs.image_tag }}
if: inputs.enable_cache_skopeo == 'true' if: inputs.enable_cache_skopeo == 'true'
uses: actions/cache/restore@v4 uses: actions/cache/restore@v5
with: with:
path: /cache/skopeo path: /cache/skopeo
key: ${{ inputs.skopeo_cache_key || env.skopeo_cache_key }} key: ${{ inputs.skopeo_cache_key || env.skopeo_cache_key }}
@ -244,7 +244,7 @@ runs:
env: env:
dnf_cache_key: dnf-${{ inputs.version }} dnf_cache_key: dnf-${{ inputs.version }}
if: inputs.enable_cache_dnf == 'true' && steps.load_dnf_cache.outputs.cache-hit != 'true' 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: with:
path: /cache/dnf_new path: /cache/dnf_new
key: ${{ inputs.dnf_cache_key || env.dnf_cache_key }} key: ${{ inputs.dnf_cache_key || env.dnf_cache_key }}
@ -253,7 +253,7 @@ runs:
env: env:
skopeo_cache_key: skopeo-${{ inputs.image_name }}-${{ inputs.version || inputs.image_tag }} 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' 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: with:
path: /cache/skopeo path: /cache/skopeo
key: ${{ inputs.skopeo_cache_key || env.skopeo_cache_key }} key: ${{ inputs.skopeo_cache_key || env.skopeo_cache_key }}