diff --git a/action.yml b/action.yml index 76b5c45..3a47c71 100644 --- a/action.yml +++ b/action.yml @@ -65,7 +65,7 @@ runs: env: dnf_cache_key: dnf-${{ inputs.version }} if: inputs.enable_cache_dnf == 'true' - uses: action/cache/restore@v4 + uses: actions/cache/restore@v4 with: path: /cache/dnf key: ${{ inputs.dnf_cache_key || env.dnf_cache_key }} @@ -74,7 +74,7 @@ runs: env: skopeo_cache_key: skopeo-${{ inputs.image_name }}-${{ inputs.image_tag }} if: inputs.enable_cache_skopeo == 'true' - uses: action/cache/restore@v4 + uses: actions/cache/restore@v4 with: path: /cache/skopeo key: ${{ inputs.skopeo_cache_key || env.skopeo_cache_key }} @@ -104,7 +104,7 @@ runs: env: dnf_cache_key: dnf-${{ inputs.version }} if: inputs.enable_cache_dnf == 'true' - uses: action/cache/save@v4 + uses: actions/cache/save@v4 with: path: /cache/dnf key: ${{ inputs.dnf_cache_key || env.dnf_cache_key }} @@ -113,7 +113,7 @@ runs: env: skopeo_cache_key: skopeo-${{ inputs.image_name }}-${{ inputs.image_tag }} if: inputs.enable_cache_skopeo == 'true' - uses: action/cache/save@v4 + uses: actions/cache/save@v4 with: path: /cache/skopeo key: ${{ inputs.skopeo_cache_key || env.skopeo_cache_key }}