66
66
run : echo "CCACHE_DIR=${RUNNER_TEMP}/ccache_dir" >> "$GITHUB_ENV"
67
67
68
68
- name : Restore Ccache cache
69
- uses : actions/cache/restore@v3
69
+ uses : actions/cache/restore@v4
70
70
with :
71
71
path : ${{ env.CCACHE_DIR }}
72
72
key : ${{ github.job }}-ccache-${{ github.run_id }}
76
76
run : ./ci/test_run_all.sh
77
77
78
78
- name : Save Ccache cache
79
- uses : actions/cache/save@v3
79
+ uses : actions/cache/save@v4
80
80
if : github.event_name != 'pull_request'
81
81
with :
82
82
path : ${{ env.CCACHE_DIR }}
@@ -151,7 +151,7 @@ jobs:
151
151
152
152
- name : Restore static Qt cache
153
153
id : static-qt-cache
154
- uses : actions/cache/restore@v3
154
+ uses : actions/cache/restore@v4
155
155
with :
156
156
path : C:\Qt_static
157
157
key : ${{ github.job }}-static-qt-${{ hashFiles('msbuild_version', 'qt_url', 'qt_conf') }}
@@ -194,14 +194,14 @@ jobs:
194
194
195
195
- name : Save static Qt cache
196
196
if : steps.static-qt-cache.outputs.cache-hit != 'true'
197
- uses : actions/cache/save@v3
197
+ uses : actions/cache/save@v4
198
198
with :
199
199
path : C:\Qt_static
200
200
key : ${{ github.job }}-static-qt-${{ hashFiles('msbuild_version', 'qt_url', 'qt_conf') }}
201
201
202
202
- name : Ccache installation cache
203
203
id : ccache-installation-cache
204
- uses : actions/cache@v3
204
+ uses : actions/cache@v4
205
205
with :
206
206
path : |
207
207
C:\ProgramData\chocolatey\lib\ccache
@@ -217,7 +217,7 @@ jobs:
217
217
Copy-Item -Path "$env:ChocolateyInstall\lib\ccache\tools\ccache-$env:CI_CCACHE_VERSION-windows-x86_64\ccache.exe" -Destination "C:\ccache\cl.exe"
218
218
219
219
- name : Restore Ccache cache
220
- uses : actions/cache/restore@v3
220
+ uses : actions/cache/restore@v4
221
221
with :
222
222
path : ~/AppData/Local/ccache
223
223
key : ${{ github.job }}-ccache-${{ github.run_id }}
@@ -232,13 +232,13 @@ jobs:
232
232
Get-Content -Path "$env:GITHUB_WORKSPACE\vcpkg_commit"
233
233
234
234
- name : vcpkg tools cache
235
- uses : actions/cache@v3
235
+ uses : actions/cache@v4
236
236
with :
237
237
path : C:/vcpkg/downloads/tools
238
238
key : ${{ github.job }}-vcpkg-tools
239
239
240
240
- name : vcpkg binary cache
241
- uses : actions/cache@v3
241
+ uses : actions/cache@v4
242
242
with :
243
243
path : ~/AppData/Local/vcpkg/archives
244
244
key : ${{ github.job }}-vcpkg-binary-${{ hashFiles('vcpkg_commit', 'msbuild_version', 'build_msvc/vcpkg.json') }}
@@ -256,7 +256,7 @@ jobs:
256
256
run : ccache --show-stats
257
257
258
258
- name : Save Ccache cache
259
- uses : actions/cache/save@v3
259
+ uses : actions/cache/save@v4
260
260
if : github.event_name != 'pull_request'
261
261
with :
262
262
path : ~/AppData/Local/ccache
0 commit comments