Skip to content

Commit 0e8b616

Browse files
Bump actions/cache from 4.1.2 to 4.2.0
Bumps [actions/cache](https://github.com/actions/cache) from 4.1.2 to 4.2.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.1.2...v4.2.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent c24549c commit 0e8b616

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/push-master.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
# download cache
8888
- name: Download ccache files
8989
if: env.USE_CACHE == 'true'
90-
uses: actions/cache@v4.1.2
90+
uses: actions/cache@v4.2.0
9191
with:
9292
path: .ccache
9393
key: ${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
@@ -171,7 +171,7 @@ jobs:
171171
# Download cache
172172
- name: Download ccache files
173173
if: env.USE_CACHE == 'true'
174-
uses: actions/cache@v4.1.2
174+
uses: actions/cache@v4.2.0
175175
with:
176176
path: build/.ccache
177177
key: macOS-ccache-${{ matrix.NICE_NAME }}-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
@@ -238,7 +238,7 @@ jobs:
238238
submodules: true
239239

240240
- name: Cache Qt
241-
uses: actions/cache@v4.1.2
241+
uses: actions/cache@v4.2.0
242242
id: cache-qt-windows
243243
with:
244244
path: ${{ runner.workspace }}/Qt
@@ -262,7 +262,7 @@ jobs:
262262
# Download cache
263263
- name: Download ccache files
264264
if: env.USE_CACHE == 'true'
265-
uses: actions/cache@v4.1.2
265+
uses: actions/cache@v4.2.0
266266
with:
267267
path: build/.ccache
268268
key: ${{ runner.os }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}

.github/workflows/upload-to-github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
# download cache
8585
- name: ccache cache files
8686
if: ( env.USE_CACHE == '1' )
87-
uses: actions/cache@v4.1.2
87+
uses: actions/cache@v4.2.0
8888
with:
8989
path: .ccache
9090
key: ${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}

0 commit comments

Comments
 (0)