Skip to content

Commit 7017277

Browse files
Update actions/cache action to v6.1.0 (#600)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7d2a0dc commit 7017277

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/actions/cmake-project-finalize/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ runs:
2121

2222
- if: steps.init.outputs.save-cache == 'true'
2323
name: Cache Conan packages
24-
uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
24+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
2525
with:
2626
key: ${{ inputs.conan-cache-key-prefix }}-${{ hashFiles('solvers/cpp/conan.lock') }}-${{ steps.init.outputs.packages-hash }}
2727
path: ${{ steps.init.outputs.conan-cache-path }}

.github/actions/cmake-project-setup/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020

2121
- id: cache-conan-packages
2222
name: Restore Conan packages cache
23-
uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
23+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
2424
with:
2525
# Use an intentionally non-matching suffix so that restores only use the prefixes below.
2626
# The full key is only used when saving a new cache entry.

.github/actions/hardened-libc++/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ runs:
2626

2727
- id: cache-restore
2828
name: Restore cached hardened llvm libc++
29-
uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
29+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3030
with:
3131
key: llvm-libc++-hardened-${{ steps.init.outputs.llvmVersion }}-homebrew-llvm@${{ inputs.llvm-major-version }}-${{ hashFiles('.github/actions/hardened-libc++/build.sh') }}
3232
path: ${{ steps.init.outputs.installDir }}
@@ -56,7 +56,7 @@ runs:
5656

5757
- if: steps.cache-restore.outputs.cache-hit != 'true'
5858
name: Save hardened llvm libc++ cache
59-
uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
59+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6060
with:
6161
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
6262
path: ${{ steps.init.outputs.installDir }}

.github/actions/homebrew-packages-setup/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141

4242
- id: cache-restore
4343
name: Mise cache restore
44-
uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
44+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
4545
with:
4646
key: ${{ steps.init.outputs.cache-key-for-restore }}
4747
path: ${{ steps.init.outputs.cache-path }}
@@ -63,7 +63,7 @@ runs:
6363

6464
- if: steps.install.outputs.save-cache == 'true'
6565
name: Save cache
66-
uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
66+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6767
with:
6868
key: ${{ steps.init.outputs.cache-key-prefix }}-${{ steps.install.outputs.downloads-hash }}
6969
path: ${{ steps.init.outputs.cache-path }}

.github/actions/mise-project-setup/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
- id: check-cache-match
2929
if: inputs.cache-mode == 'prepare'
3030
name: Mise cache check for exact match
31-
uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
31+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3232
with:
3333
key: mise-${{ runner.os }}-${{ steps.init.outputs.mise-version }}-${{ hashFiles('mise.toml') }}-${{ hashFiles('aoc-main/mise.toml') }}-${{ hashFiles('solvers/*/mise.toml') }}
3434
lookup-only: true
@@ -53,7 +53,7 @@ runs:
5353
- id: cache-restore
5454
if: steps.cache-check.outputs.match != 'true'
5555
name: Mise cache restore
56-
uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
56+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
5757
with:
5858
key: mise-${{ runner.os }}-${{ steps.init.outputs.mise-version }}-${{ hashFiles('mise.toml') }}-${{ hashFiles('aoc-main/mise.toml') }}-${{ hashFiles('solvers/*/mise.toml') }}
5959
path: ${{ steps.init.outputs.cache-paths }}
@@ -93,7 +93,7 @@ runs:
9393

9494
- if: inputs.cache-mode == 'prepare' && steps.cache-check.outputs.match != 'true' && steps.cache-restore.outputs.cache-hit != 'true'
9595
name: Save cache
96-
uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
96+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
9797
with:
9898
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
9999
path: ${{ steps.init.outputs.cache-paths }}

.github/actions/uv-project-setup/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323

2424
- name: uv cache restore
2525
id: cache-restore
26-
uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
26+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
2727
with:
2828
key: ${{ steps.init.outputs.cache-key }}
2929
path: ${{ steps.init.outputs.cache-paths }}
@@ -61,7 +61,7 @@ runs:
6161

6262
- name: Save cache
6363
if: inputs.cache-mode == 'prepare' && steps.cache-restore.outputs.cache-hit != 'true'
64-
uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0
64+
uses: actions/cache/save@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6565
with:
6666
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
6767
path: ${{ steps.init.outputs.cache-paths }}

0 commit comments

Comments
 (0)