Skip to content

Commit 3ef4f0a

Browse files
Merge pull request #1021 from DrTimothyAldenDavis/dependabot/github_actions/actions/cache-5
Bump actions/cache from 4 to 5
2 parents 9759b8c + 92c5c56 commit 3ef4f0a

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/build-arch-emu.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
102102
- name: restore ccache
103103
# setup the GitHub cache used to maintain the ccache from one job to the next
104-
uses: actions/cache/restore@v4
104+
uses: actions/cache/restore@v5
105105
with:
106106
# location of the ccache of the chroot in the root file system
107107
path: /home/runner/rootfs/alpine-latest-${{ matrix.arch }}/home/runner/.ccache
@@ -175,7 +175,7 @@ jobs:
175175
# Save the cache after we are done building
176176
# This helps to retain the ccache even if the subsequent steps are failing.
177177
if: always() && (steps.build.outcome != 'skipped')
178-
uses: actions/cache/save@v4
178+
uses: actions/cache/save@v5
179179
with:
180180
path: /home/runner/rootfs/alpine-latest-${{ matrix.arch }}/home/runner/.ccache
181181
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/build-mingw.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
105105
- name: restore ccache
106106
# Setup the GitHub cache used to maintain the ccache from one job to the next
107-
uses: actions/cache/restore@v4
107+
uses: actions/cache/restore@v5
108108
with:
109109
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
110110
key: ${{ steps.ccache-prepare.outputs.key }}
@@ -173,7 +173,7 @@ jobs:
173173
# Save the cache after we are done building
174174
# This helps to retain the ccache even if the subsequent steps are failing.
175175
if: always() && (steps.build.outcome != 'skipped')
176-
uses: actions/cache/save@v4
176+
uses: actions/cache/save@v5
177177
with:
178178
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
179179
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104

105105
- name: restore ccache
106106
# setup the GitHub cache used to maintain the ccache from one job to the next
107-
uses: actions/cache/restore@v4
107+
uses: actions/cache/restore@v5
108108
with:
109109
path: ~/.ccache
110110
key: ${{ steps.ccache-prepare.outputs.key }}
@@ -194,7 +194,7 @@ jobs:
194194
# Save the cache after we are done building
195195
# This helps to retain the ccache even if the subsequent steps are failing.
196196
if: always() && (steps.build.outcome != 'skipped')
197-
uses: actions/cache/save@v4
197+
uses: actions/cache/save@v5
198198
with:
199199
path: ~/.ccache
200200
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/cross-compile.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ jobs:
180180
181181
- name: restore ccache
182182
# setup the GitHub cache used to maintain the ccache from one job to the next
183-
uses: actions/cache/restore@v4
183+
uses: actions/cache/restore@v5
184184
with:
185185
# location of the ccache of the chroot in the root file system
186186
path: /home/runner/.ccache
@@ -249,7 +249,7 @@ jobs:
249249
- name: save ccache
250250
# Save the cache after we are done (successfully) building
251251
# This helps to retain the ccache even if the subsequent steps are failing
252-
uses: actions/cache/save@v4
252+
uses: actions/cache/save@v5
253253
with:
254254
path: /home/runner/.ccache
255255
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/macos.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: restore ccache
6969
# setup the GitHub cache used to maintain the ccache from one job to the next
70-
uses: actions/cache/restore@v4
70+
uses: actions/cache/restore@v5
7171
with:
7272
path: /Users/runner/Library/Caches/ccache
7373
key: ${{ steps.ccache-prepare.outputs.key }}
@@ -202,7 +202,7 @@ jobs:
202202
# Save the cache after we are done building
203203
# This helps to retain the ccache even if the subsequent steps are failing.
204204
if: always() && (steps.build.outcome != 'skipped')
205-
uses: actions/cache/save@v4
205+
uses: actions/cache/save@v5
206206
with:
207207
path: /Users/runner/Library/Caches/ccache
208208
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/root-cmakelists-msvc.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: cache conda packages
9292
id: conda-cache
93-
uses: actions/cache/restore@v4
93+
uses: actions/cache/restore@v5
9494
with:
9595
path: C:/Miniconda/envs/test
9696
key: conda:netlib:msvc
@@ -106,7 +106,7 @@ jobs:
106106
107107
- name: save conda cache
108108
if: ${{ steps.conda-cache.outputs.cache-hit != 'true' }}
109-
uses: actions/cache/save@v4
109+
uses: actions/cache/save@v5
110110
with:
111111
path: C:/Miniconda/envs/test
112112
key: ${{ steps.conda-cache.outputs.cache-primary-key }}
@@ -170,7 +170,7 @@ jobs:
170170
171171
- name: restore ccache
172172
# Setup the GitHub cache used to maintain the ccache from one job to the next
173-
uses: actions/cache/restore@v4
173+
uses: actions/cache/restore@v5
174174
with:
175175
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
176176
key: ${{ steps.ccache-prepare.outputs.key }}
@@ -260,7 +260,7 @@ jobs:
260260
# Save the cache after we are done building
261261
# This helps to retain the ccache even if the subsequent steps are failing.
262262
if: always() && (steps.build.outcome != 'skipped')
263-
uses: actions/cache/save@v4
263+
uses: actions/cache/save@v5
264264
with:
265265
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
266266
key: ${{ steps.ccache-prepare.outputs.key }}

.github/workflows/root-cmakelists.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888

8989
- name: restore ccache
9090
# setup the GitHub cache used to maintain the ccache from one job to the next
91-
uses: actions/cache/restore@v4
91+
uses: actions/cache/restore@v5
9292
with:
9393
path: ~/.ccache
9494
key: ${{ steps.ccache-prepare.outputs.key }}
@@ -187,7 +187,7 @@ jobs:
187187
# Save the cache after we are done building
188188
# This helps to retain the ccache even if the subsequent steps are failing.
189189
if: always() && (steps.build.outcome != 'skipped')
190-
uses: actions/cache/save@v4
190+
uses: actions/cache/save@v5
191191
with:
192192
path: ~/.ccache
193193
key: ${{ steps.ccache-prepare.outputs.key }}

0 commit comments

Comments
 (0)