Skip to content

Commit 37ae598

Browse files
Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d6f11f1 commit 37ae598

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: ./.github/actions/version
5151
- name: Check cache for Toolkit image
5252
id: cache-toolkit
53-
uses: actions/cache/restore@v4
53+
uses: actions/cache/restore@v5
5454
env:
5555
cache-name: toolkit-build-x86_64-${{ github.event_name }}
5656
lookup-only: true
@@ -67,7 +67,7 @@ jobs:
6767
- if: ${{ steps.cache-toolkit.outputs.cache-hit != 'true' }}
6868
name: Save toolkit image in cache
6969
id: save-toolkit
70-
uses: actions/cache/save@v4
70+
uses: actions/cache/save@v5
7171
env:
7272
cache-name: toolkit-build-x86_64-${{ github.event_name }}
7373
with:

.github/workflows/build_and_test_arm.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
git fetch --prune --unshallow
3131
- name: Cached ISO
3232
id: cache-iso
33-
uses: actions/cache/restore@v4
33+
uses: actions/cache/restore@v5
3434
env:
3535
cache-name: pr-iso-build-aarch64-${{ inputs.flavor }}
3636
enableCrossOsArchive: true
@@ -50,7 +50,7 @@ jobs:
5050
- if: ${{ steps.cache-iso.outputs.cache-hit != 'true' }}
5151
name: Save ISO
5252
id: save-iso
53-
uses: actions/cache/save@v4
53+
uses: actions/cache/save@v5
5454
env:
5555
cache-name: pr-iso-build-aarch64-${{ inputs.flavor }}
5656
with:
@@ -69,7 +69,7 @@ jobs:
6969
- run: |
7070
git fetch --prune --unshallow
7171
- name: Checks cached Disk
72-
uses: actions/cache/restore@v4
72+
uses: actions/cache/restore@v5
7373
id: cache-check
7474
env:
7575
cache-name: pr-disk-build-aarch64-${{ inputs.flavor }}
@@ -94,7 +94,7 @@ jobs:
9494
- if: ${{ steps.cache-check.outputs.cache-hit != 'true' }}
9595
name: Save cached disk
9696
id: cache-disk
97-
uses: actions/cache/save@v4
97+
uses: actions/cache/save@v5
9898
env:
9999
cache-name: pr-disk-build-aarch64-${{ inputs.flavor }}
100100
with:
@@ -126,7 +126,7 @@ jobs:
126126
git fetch --prune --unshallow
127127
- name: Cached Disk
128128
id: cache-disk
129-
uses: actions/cache/restore@v4
129+
uses: actions/cache/restore@v5
130130
env:
131131
cache-name: pr-disk-build-aarch64-${{ inputs.flavor }}
132132
with:
@@ -177,7 +177,7 @@ jobs:
177177
git fetch --prune --unshallow
178178
- name: Cached ISO
179179
id: cache-iso
180-
uses: actions/cache/restore@v4
180+
uses: actions/cache/restore@v5
181181
env:
182182
cache-name: pr-iso-build-aarch64-${{ inputs.flavor }}
183183
with:

.github/workflows/build_and_test_x86.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
git fetch --prune --unshallow
3232
- name: Check cache for OS image
3333
id: cache-os
34-
uses: actions/cache/restore@v4
34+
uses: actions/cache/restore@v5
3535
env:
3636
cache-name: os-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
3737
lookup-only: true
@@ -52,7 +52,7 @@ jobs:
5252
- if: ${{ steps.cache-os.outputs.cache-hit != 'true' }}
5353
name: Save OS image in cache
5454
id: save-os
55-
uses: actions/cache/save@v4
55+
uses: actions/cache/save@v5
5656
env:
5757
cache-name: os-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
5858
with:
@@ -77,7 +77,7 @@ jobs:
7777
git fetch --prune --unshallow
7878
- name: Cached ISO
7979
id: cache-iso
80-
uses: actions/cache/restore@v4
80+
uses: actions/cache/restore@v5
8181
env:
8282
cache-name: iso-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
8383
lookup-only: true
@@ -98,7 +98,7 @@ jobs:
9898
- if: ${{ steps.cache-iso.outputs.cache-hit != 'true' }}
9999
name: Save ISO
100100
id: save-iso
101-
uses: actions/cache/save@v4
101+
uses: actions/cache/save@v5
102102
env:
103103
cache-name: iso-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
104104
with:
@@ -122,7 +122,7 @@ jobs:
122122
- run: |
123123
git fetch --prune --unshallow
124124
- name: Checks cached Disk
125-
uses: actions/cache/restore@v4
125+
uses: actions/cache/restore@v5
126126
id: cache-disk
127127
env:
128128
cache-name: disk-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
@@ -145,7 +145,7 @@ jobs:
145145
- if: ${{ steps.cache-disk.outputs.cache-hit != 'true' }}
146146
name: Save cached disk
147147
id: save-disk
148-
uses: actions/cache/save@v4
148+
uses: actions/cache/save@v5
149149
env:
150150
cache-name: disk-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
151151
with:
@@ -204,7 +204,7 @@ jobs:
204204
- if: ${{ matrix.test != 'test-upgrade' }}
205205
name: Cached Disk
206206
id: cache-disk
207-
uses: actions/cache/restore@v4
207+
uses: actions/cache/restore@v5
208208
env:
209209
cache-name: disk-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
210210
with:
@@ -266,7 +266,7 @@ jobs:
266266
git fetch --prune --unshallow
267267
- name: Cached ISO
268268
id: cache-iso
269-
uses: actions/cache/restore@v4
269+
uses: actions/cache/restore@v5
270270
env:
271271
cache-name: iso-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
272272
with:

0 commit comments

Comments
 (0)