Skip to content

Commit 74afd4c

Browse files
dependabot[bot]Mizux
authored andcommitted
build(deps): bump actions/cache from 5 to 6 in the github-actions group
Bumps the github-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9e76569 commit 74afd4c

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/amd64_linux_cmake.yml

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

3636
# CONFIGURING CACHES
3737
- name: Cache CMake dependency source code
38-
uses: actions/cache@v5
38+
uses: actions/cache@v6
3939
with:
4040
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
4141
path: ${{github.workspace}}/build/_deps/*-src
4242
- name: Cache CMake dependency build
43-
uses: actions/cache@v5
43+
uses: actions/cache@v6
4444
with:
4545
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
4646
path: |
4747
${{github.workspace}}/build/_deps/*-build
4848
${{github.workspace}}/build/_deps/*-subbuild
4949
- name: Cache CCache
50-
uses: actions/cache@v5
50+
uses: actions/cache@v6
5151
with:
5252
key: ${{env.ccache_key}}-${{github.sha}}
5353
restore-keys: |

.github/workflows/amd64_macos_cmake.yml

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

3535
# CONFIGURING CACHES
3636
- name: Cache CMake dependency source code
37-
uses: actions/cache@v5
37+
uses: actions/cache@v6
3838
with:
3939
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
4040
path: ${{github.workspace}}/build/_deps/*-src
4141
- name: Cache CMake dependency build
42-
uses: actions/cache@v5
42+
uses: actions/cache@v6
4343
with:
4444
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
4545
path: |
4646
${{github.workspace}}/build/_deps/*-build
4747
${{github.workspace}}/build/_deps/*-subbuild
4848
- name: Cache CCache
49-
uses: actions/cache@v5
49+
uses: actions/cache@v6
5050
with:
5151
key: ${{env.ccache_key}}-${{github.sha}}
5252
restore-keys: |

.github/workflows/amd64_windows_cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828

2929
# CONFIGURING CACHES
3030
- name: Cache CMake dependency source code
31-
uses: actions/cache@v5
31+
uses: actions/cache@v6
3232
with:
3333
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
3434
path: ${{github.workspace}}/build/_deps/*-src
3535
- name: Cache CMake dependency build
36-
uses: actions/cache@v5
36+
uses: actions/cache@v6
3737
with:
3838
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
3939
path: |

.github/workflows/arm64_macos_cmake.yml

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

3535
# CONFIGURING CACHES
3636
- name: Cache CMake dependency source code
37-
uses: actions/cache@v5
37+
uses: actions/cache@v6
3838
with:
3939
key: ${{env.deps_src_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
4040
path: ${{github.workspace}}/build/_deps/*-src
4141
- name: Cache CMake dependency build
42-
uses: actions/cache@v5
42+
uses: actions/cache@v6
4343
with:
4444
key: ${{env.deps_build_key}}-${{hashFiles('CMakeLists.txt', 'cmake/**')}}
4545
path: |
4646
${{github.workspace}}/build/_deps/*-build
4747
${{github.workspace}}/build/_deps/*-subbuild
4848
- name: Cache CCache
49-
uses: actions/cache@v5
49+
uses: actions/cache@v6
5050
with:
5151
key: ${{env.ccache_key}}-${{github.sha}}
5252
restore-keys: |

0 commit comments

Comments
 (0)