Skip to content

Commit 69d58c1

Browse files
committed
chore(deps): update actions/cache action to v5
1 parent 8baacc8 commit 69d58c1

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
tar -C vcpkg --strip-components=1 -zxf -
2525
- name: cache-vcpkg
2626
id: cache-vcpkg
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
# Preserve the vcpkg binary *and* the vcpkg binary cache in the build cache
3030
path: |
@@ -42,7 +42,7 @@ jobs:
4242
cmake -S . -B "${{runner.temp}}/build" -GNinja
4343
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
4444
-DCMAKE_TOOLCHAIN_FILE="${{runner.temp}}/vcpkg/scripts/buildsystems/vcpkg.cmake"
45-
- uses: actions/cache/save@v4
45+
- uses: actions/cache/save@v5
4646
if: always()
4747
with:
4848
path: |
@@ -66,7 +66,7 @@ jobs:
6666
- uses: actions/checkout@v4
6767
- name: cache-vcpkg
6868
id: cache-vcpkg
69-
uses: actions/cache@v4
69+
uses: actions/cache@v5
7070
with:
7171
path: |
7272
~/.cache/vcpkg
@@ -89,7 +89,7 @@ jobs:
8989
run: >
9090
cmake -S examples/site/howto_local_development -B "${{runner.temp}}/howto_local_development/build" -GNinja
9191
-DCMAKE_TOOLCHAIN_FILE=/usr/local/share/vcpkg/scripts/buildsystems/vcpkg.cmake
92-
- uses: actions/cache/save@v4
92+
- uses: actions/cache/save@v5
9393
if: always()
9494
with:
9595
path: |
@@ -122,7 +122,7 @@ jobs:
122122
123123
- name: cache-vcpkg
124124
id: cache-vcpkg
125-
uses: actions/cache@v4
125+
uses: actions/cache@v5
126126
with:
127127
# Preserve the vcpkg binary cache
128128
path: |
@@ -140,7 +140,7 @@ jobs:
140140
'-DBUILD_TESTING=ON' `
141141
'-DFUNCTIONS_FRAMEWORK_CPP_TEST_EXAMPLES=OFF' `
142142
'-DCMAKE_TOOLCHAIN_FILE=${{runner.temp}}/vcpkg/scripts/buildsystems/vcpkg.cmake'
143-
- uses: actions/cache/save@v4
143+
- uses: actions/cache/save@v5
144144
if: always()
145145
with:
146146
path: |
@@ -168,7 +168,7 @@ jobs:
168168
tar -C vcpkg --strip-components=1 -zxf -
169169
- name: cache-vcpkg
170170
id: cache-vcpkg
171-
uses: actions/cache@v4
171+
uses: actions/cache@v5
172172
with:
173173
# Preserve the vcpkg binary *and* the vcpkg binary cache in the build cache
174174
path: |
@@ -186,7 +186,7 @@ jobs:
186186
cmake -S . -B "${{runner.temp}}/build" -GNinja
187187
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
188188
-DCMAKE_TOOLCHAIN_FILE="${{runner.temp}}/vcpkg/scripts/buildsystems/vcpkg.cmake"
189-
- uses: actions/cache/save@v4
189+
- uses: actions/cache/save@v5
190190
if: always()
191191
with:
192192
path: |

.github/workflows/coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
tar -C vcpkg --strip-components=1 -zxf -
2525
- name: cache-vcpkg
2626
id: cache-vcpkg
27-
uses: actions/cache@v4
27+
uses: actions/cache@v5
2828
with:
2929
# Preserve the vcpkg binary *and* the vcpkg binary cache in the build cache
3030
path: |
@@ -43,7 +43,7 @@ jobs:
4343
-DCMAKE_BUILD_TYPE=Debug
4444
-DCMAKE_CXX_FLAGS=--coverage
4545
-DCMAKE_TOOLCHAIN_FILE="${{runner.temp}}/vcpkg/scripts/buildsystems/vcpkg.cmake"
46-
- uses: actions/cache/save@v4
46+
- uses: actions/cache/save@v5
4747
if: always()
4848
with:
4949
path: |

0 commit comments

Comments
 (0)