Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bootc-build/dnf-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
- name: Restore DNF package cache
id: restore
if: inputs.action == 'restore'
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
with:
path: ${{ inputs.cache-path }}
key: ${{ runner.os }}-${{ inputs.architecture }}-buildah-${{ inputs.image-flavor != '' && format('{0}-', inputs.image-flavor) || '' }}${{ inputs.cache-name }}${{ inputs.cache-bust != '' && format('-{0}', inputs.cache-bust) || '' }}
Expand All @@ -58,7 +58,7 @@ runs:

- name: Save DNF package cache
if: always() && !cancelled() && inputs.action == 'save' && inputs.allow-write == 'true'
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
with:
path: ${{ inputs.cache-path }}
key: ${{ runner.os }}-${{ inputs.architecture }}-buildah-${{ inputs.image-flavor != '' && format('{0}-', inputs.image-flavor) || '' }}${{ inputs.cache-name }}${{ inputs.cache-bust != '' && format('-{0}', inputs.cache-bust) || '' }}
4 changes: 2 additions & 2 deletions bootc-build/scan-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:

- name: Restore Trivy vulnerability DB cache
id: trivy-db-cache-restore
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
with:
path: ~/.cache/trivy
key: trivy-db-${{ runner.os }}-${{ runner.arch }}-${{ steps.trivy-date.outputs.date }}
Expand Down Expand Up @@ -89,7 +89,7 @@ runs:
- name: Save Trivy vulnerability DB cache
# Only save on cache miss — DB is shared between the SARIF and JSON scan steps above.
if: steps.trivy-db-cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
with:
path: ~/.cache/trivy
key: ${{ steps.trivy-db-cache-restore.outputs.cache-primary-key }}
Expand Down
4 changes: 2 additions & 2 deletions bootc-build/setup-runner/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ runs:
- name: Restore apt package cache
if: inputs.update-podman == 'true'
id: apt-cache-restore
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
with:
path: /var/cache/apt/archives
key: apt-resolute-podman-${{ runner.os }}-${{ runner.arch }}-${{ steps.apt-cache-key.outputs.week }}
Expand All @@ -87,7 +87,7 @@ runs:

- name: Save apt package cache
if: inputs.update-podman == 'true' && steps.apt-cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache/save@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
with:
path: /var/cache/apt/archives
key: ${{ steps.apt-cache-restore.outputs.cache-primary-key }}
Expand Down
2 changes: 1 addition & 1 deletion bootc-build/validate-pr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:
run: PIP_CONSTRAINT='' pip install 'pre-commit==4.6.0'

- name: Cache pre-commit hooks
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-${{ runner.arch }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
Loading