@@ -106,7 +106,7 @@ jobs:
106
106
107
107
- name : Restore Ccache cache
108
108
id : ccache-cache
109
- uses : actions/cache/restore@v3
109
+ uses : actions/cache/restore@v4
110
110
with :
111
111
path : ${{ env.CCACHE_DIR }}
112
112
key : ${{ github.job }}-ccache-${{ github.run_id }}
@@ -116,7 +116,7 @@ jobs:
116
116
run : ./ci/test_run_all.sh
117
117
118
118
- name : Save Ccache cache
119
- uses : actions/cache/save@v3
119
+ uses : actions/cache/save@v4
120
120
if : github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'
121
121
with :
122
122
path : ${{ env.CCACHE_DIR }}
@@ -209,7 +209,7 @@ jobs:
209
209
210
210
- name : Restore static Qt cache
211
211
id : static-qt-cache
212
- uses : actions/cache/restore@v3
212
+ uses : actions/cache/restore@v4
213
213
with :
214
214
path : C:\Qt_static
215
215
key : ${{ github.job }}-static-qt-${{ hashFiles('msbuild_version', 'qt_url', 'qt_conf') }}
@@ -252,14 +252,14 @@ jobs:
252
252
253
253
- name : Save static Qt cache
254
254
if : steps.static-qt-cache.outputs.cache-hit != 'true'
255
- uses : actions/cache/save@v3
255
+ uses : actions/cache/save@v4
256
256
with :
257
257
path : C:\Qt_static
258
258
key : ${{ github.job }}-static-qt-${{ hashFiles('msbuild_version', 'qt_url', 'qt_conf') }}
259
259
260
260
- name : Ccache installation cache
261
261
id : ccache-installation-cache
262
- uses : actions/cache@v3
262
+ uses : actions/cache@v4
263
263
with :
264
264
path : |
265
265
C:\ProgramData\chocolatey\lib\ccache
@@ -276,7 +276,7 @@ jobs:
276
276
277
277
- name : Restore Ccache cache
278
278
id : ccache-cache
279
- uses : actions/cache/restore@v3
279
+ uses : actions/cache/restore@v4
280
280
with :
281
281
path : ~/AppData/Local/ccache
282
282
key : ${{ github.job }}-ccache-${{ github.run_id }}
@@ -291,13 +291,13 @@ jobs:
291
291
Get-Content -Path "$env:GITHUB_WORKSPACE\vcpkg_commit"
292
292
293
293
- name : vcpkg tools cache
294
- uses : actions/cache@v3
294
+ uses : actions/cache@v4
295
295
with :
296
296
path : C:/vcpkg/downloads/tools
297
297
key : ${{ github.job }}-vcpkg-tools
298
298
299
299
- name : vcpkg binary cache
300
- uses : actions/cache@v3
300
+ uses : actions/cache@v4
301
301
with :
302
302
path : ~/AppData/Local/vcpkg/archives
303
303
key : ${{ github.job }}-vcpkg-binary-${{ hashFiles('vcpkg_commit', 'msbuild_version', 'build_msvc/vcpkg.json') }}
@@ -315,7 +315,7 @@ jobs:
315
315
run : ccache --show-stats
316
316
317
317
- name : Save Ccache cache
318
- uses : actions/cache/save@v3
318
+ uses : actions/cache/save@v4
319
319
if : github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'
320
320
with :
321
321
path : ~/AppData/Local/ccache
0 commit comments