Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
build(deps): bump actions/cache from 4 to 5 in the github-actions group
Bumps the github-actions group with 1 update: [actions/cache](https://github.com/actions/cache).


Updates `actions/cache` from 4 to 5
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v4...v5)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 15, 2025
commit 143c35d153c0d0f1747e82c3ddecdca924a6dcee
6 changes: 3 additions & 3 deletions .github/workflows/amd64_linux_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,19 @@ jobs:

# CONFIGURING CACHES
- name: Cache CMake dependency source code
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
path: ${{github.workspace}}/build/_deps/*-src
- name: Cache CMake dependency build
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
path: |
${{github.workspace}}/build/_deps/*-build
${{github.workspace}}/build/_deps/*-subbuild
- name: Cache CCache
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.ccache_key}}-${{github.sha}}
restore-keys: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/amd64_macos_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ jobs:

# CONFIGURING CACHES
- name: Cache CMake dependency source code
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
path: ${{github.workspace}}/build/_deps/*-src
- name: Cache CMake dependency build
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
path: |
${{github.workspace}}/build/_deps/*-build
${{github.workspace}}/build/_deps/*-subbuild
- name: Cache CCache
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.ccache_key}}-${{github.sha}}
restore-keys: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/amd64_windows_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:

# CONFIGURING CACHES
- name: Cache CMake dependency source code
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
path: ${{github.workspace}}/build/_deps/*-src
- name: Cache CMake dependency build
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/arm64_macos_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ jobs:

# CONFIGURING CACHES
- name: Cache CMake dependency source code
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
path: ${{github.workspace}}/build/_deps/*-src
- name: Cache CMake dependency build
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
path: |
${{github.workspace}}/build/_deps/*-build
${{github.workspace}}/build/_deps/*-subbuild
- name: Cache CCache
uses: actions/cache@v4
uses: actions/cache@v5
with:
key: ${{env.ccache_key}}-${{github.sha}}
restore-keys: |
Expand Down
Loading