@@ -103,7 +103,7 @@ jobs:
103
103
104
104
- name : Restore Ccache cache
105
105
id : ccache-cache
106
- uses : actions/cache/restore@v3
106
+ uses : actions/cache/restore@v4
107
107
with :
108
108
path : ${{ env.CCACHE_DIR }}
109
109
key : ${{ github.job }}-ccache-${{ github.run_id }}
@@ -113,7 +113,7 @@ jobs:
113
113
run : ./ci/test_run_all.sh
114
114
115
115
- name : Save Ccache cache
116
- uses : actions/cache/save@v3
116
+ uses : actions/cache/save@v4
117
117
if : github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'
118
118
with :
119
119
path : ${{ env.CCACHE_DIR }}
@@ -159,7 +159,7 @@ jobs:
159
159
160
160
- name : Restore static Qt cache
161
161
id : static-qt-cache
162
- uses : actions/cache/restore@v3
162
+ uses : actions/cache/restore@v4
163
163
with :
164
164
path : C:\Qt_static
165
165
key : ${{ github.job }}-static-qt-${{ hashFiles('msbuild_version', 'qt_url', 'qt_conf') }}
@@ -202,14 +202,14 @@ jobs:
202
202
203
203
- name : Save static Qt cache
204
204
if : steps.static-qt-cache.outputs.cache-hit != 'true'
205
- uses : actions/cache/save@v3
205
+ uses : actions/cache/save@v4
206
206
with :
207
207
path : C:\Qt_static
208
208
key : ${{ github.job }}-static-qt-${{ hashFiles('msbuild_version', 'qt_url', 'qt_conf') }}
209
209
210
210
- name : Ccache installation cache
211
211
id : ccache-installation-cache
212
- uses : actions/cache@v3
212
+ uses : actions/cache@v4
213
213
with :
214
214
path : |
215
215
C:\ProgramData\chocolatey\lib\ccache
@@ -226,7 +226,7 @@ jobs:
226
226
227
227
- name : Restore Ccache cache
228
228
id : ccache-cache
229
- uses : actions/cache/restore@v3
229
+ uses : actions/cache/restore@v4
230
230
with :
231
231
path : ~/AppData/Local/ccache
232
232
key : ${{ github.job }}-ccache-${{ github.run_id }}
@@ -242,13 +242,13 @@ jobs:
242
242
Get-Content -Path "$env:GITHUB_WORKSPACE\vcpkg_commit"
243
243
244
244
- name : vcpkg tools cache
245
- uses : actions/cache@v3
245
+ uses : actions/cache@v4
246
246
with :
247
247
path : C:/vcpkg/downloads/tools
248
248
key : ${{ github.job }}-vcpkg-tools
249
249
250
250
- name : vcpkg binary cache
251
- uses : actions/cache@v3
251
+ uses : actions/cache@v4
252
252
with :
253
253
path : ~/AppData/Local/vcpkg/archives
254
254
key : ${{ github.job }}-vcpkg-binary-${{ hashFiles('vcpkg_commit', 'msbuild_version', 'toolset_version', 'build_msvc/vcpkg.json') }}
@@ -266,7 +266,7 @@ jobs:
266
266
run : ccache --show-stats
267
267
268
268
- name : Save Ccache cache
269
- uses : actions/cache/save@v3
269
+ uses : actions/cache/save@v4
270
270
if : github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'
271
271
with :
272
272
path : ~/AppData/Local/ccache
0 commit comments