Skip to content

Commit 143c35d

Browse files
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] <support@github.com>
1 parent 6d2036d commit 143c35d

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/amd64_linux_cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,19 @@ jobs:
5050

5151
# CONFIGURING CACHES
5252
- name: Cache CMake dependency source code
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
with:
5555
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
5656
path: ${{github.workspace}}/build/_deps/*-src
5757
- name: Cache CMake dependency build
58-
uses: actions/cache@v4
58+
uses: actions/cache@v5
5959
with:
6060
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
6161
path: |
6262
${{github.workspace}}/build/_deps/*-build
6363
${{github.workspace}}/build/_deps/*-subbuild
6464
- name: Cache CCache
65-
uses: actions/cache@v4
65+
uses: actions/cache@v5
6666
with:
6767
key: ${{env.ccache_key}}-${{github.sha}}
6868
restore-keys: |

.github/workflows/amd64_macos_cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,19 @@ jobs:
5151

5252
# CONFIGURING CACHES
5353
- name: Cache CMake dependency source code
54-
uses: actions/cache@v4
54+
uses: actions/cache@v5
5555
with:
5656
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
5757
path: ${{github.workspace}}/build/_deps/*-src
5858
- name: Cache CMake dependency build
59-
uses: actions/cache@v4
59+
uses: actions/cache@v5
6060
with:
6161
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
6262
path: |
6363
${{github.workspace}}/build/_deps/*-build
6464
${{github.workspace}}/build/_deps/*-subbuild
6565
- name: Cache CCache
66-
uses: actions/cache@v4
66+
uses: actions/cache@v5
6767
with:
6868
key: ${{env.ccache_key}}-${{github.sha}}
6969
restore-keys: |

.github/workflows/amd64_windows_cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646
4747
# CONFIGURING CACHES
4848
- name: Cache CMake dependency source code
49-
uses: actions/cache@v4
49+
uses: actions/cache@v5
5050
with:
5151
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
5252
path: ${{github.workspace}}/build/_deps/*-src
5353
- name: Cache CMake dependency build
54-
uses: actions/cache@v4
54+
uses: actions/cache@v5
5555
with:
5656
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
5757
path: |

.github/workflows/arm64_macos_cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,19 @@ jobs:
5151

5252
# CONFIGURING CACHES
5353
- name: Cache CMake dependency source code
54-
uses: actions/cache@v4
54+
uses: actions/cache@v5
5555
with:
5656
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
5757
path: ${{github.workspace}}/build/_deps/*-src
5858
- name: Cache CMake dependency build
59-
uses: actions/cache@v4
59+
uses: actions/cache@v5
6060
with:
6161
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
6262
path: |
6363
${{github.workspace}}/build/_deps/*-build
6464
${{github.workspace}}/build/_deps/*-subbuild
6565
- name: Cache CCache
66-
uses: actions/cache@v4
66+
uses: actions/cache@v5
6767
with:
6868
key: ${{env.ccache_key}}-${{github.sha}}
6969
restore-keys: |

0 commit comments

Comments
 (0)