Skip to content

Commit a443fb5

Browse files
Update actions/cache action to v4.3.0 (#122)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 74607a0 commit a443fb5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/mise-project-setup/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: Mise cache restore
29-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
29+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3030
with:
3131
key: mise-${{ steps.init.outputs.mise-version }}-${{ runner.os }}-${{ hashFiles('mise.toml') }}-${{ hashFiles('aoc-main/mise.toml') }}-${{ hashFiles('solvers/*/mise.toml') }}
3232
path: ${{ steps.init.outputs.cache-paths }}
@@ -117,7 +117,7 @@ runs:
117117

118118
- if: inputs.cache-mode == 'prepare' && steps.cache-restore.outputs.cache-hit != 'true'
119119
name: Save cache
120-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
120+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
121121
with:
122122
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
123123
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
@@ -22,7 +22,7 @@ runs:
2222

2323
- name: uv cache restore
2424
id: cache-restore
25-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
25+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
2626
with:
2727
key: ${{ steps.init.outputs.cache-key }}
2828
path: ${{ steps.init.outputs.cache-paths }}
@@ -58,7 +58,7 @@ runs:
5858

5959
- name: Save cache
6060
if: inputs.cache-mode == 'prepare' && steps.cache-restore.outputs.cache-hit != 'true'
61-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
61+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6262
with:
6363
key: ${{ steps.cache-restore.outputs.cache-primary-key }}
6464
path: ${{ steps.init.outputs.cache-paths }}

0 commit comments

Comments
 (0)