Skip to content

Commit

Permalink
Bump actions/cache from 4.1.2 to 4.2.0 (#1034)
Browse files Browse the repository at this point in the history
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]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 4, 2025
1 parent 429b0ab commit ddbf6d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
# download cache
- name: Download ccache files
if: env.USE_CACHE == 'true'
uses: actions/cache@v4.1.2
uses: actions/cache@v4.2.0
with:
path: .ccache
key: ${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
# Download cache
- name: Download ccache files
if: env.USE_CACHE == 'true'
uses: actions/cache@v4.1.2
uses: actions/cache@v4.2.0
with:
path: build/.ccache
key: macOS-ccache-${{ matrix.NICE_NAME }}-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
submodules: true

- name: Cache Qt
uses: actions/cache@v4.1.2
uses: actions/cache@v4.2.0
id: cache-qt-windows
with:
path: ${{ runner.workspace }}/Qt
Expand All @@ -262,7 +262,7 @@ jobs:
# Download cache
- name: Download ccache files
if: env.USE_CACHE == 'true'
uses: actions/cache@v4.1.2
uses: actions/cache@v4.2.0
with:
path: build/.ccache
key: ${{ runner.os }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-to-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
# download cache
- name: ccache cache files
if: ( env.USE_CACHE == '1' )
uses: actions/cache@v4.1.2
uses: actions/cache@v4.2.0
with:
path: .ccache
key: ${{ matrix.linuxVersion }}-${{ matrix.dockerImage }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
Expand Down

0 comments on commit ddbf6d2

Please sign in to comment.