Skip to content

Commit 036f950

Browse files
chore(deps): bump actions/cache from 4 to 6 (#10593)
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5b7b914 commit 036f950

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/backend_build_darwin.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
# as the Linux registry cache.
8383
- name: Restore Homebrew cache
8484
id: brew-cache
85-
uses: actions/cache/restore@v4
85+
uses: actions/cache/restore@v6
8686
with:
8787
path: |
8888
~/Library/Caches/Homebrew/downloads
@@ -142,7 +142,7 @@ jobs:
142142
143143
- name: Save Homebrew cache
144144
if: github.event_name != 'pull_request' && steps.brew-cache.outputs.cache-hit != 'true'
145-
uses: actions/cache/save@v4
145+
uses: actions/cache/save@v6
146146
with:
147147
path: |
148148
~/Library/Caches/Homebrew/downloads
@@ -178,7 +178,7 @@ jobs:
178178
- name: Restore ccache
179179
if: inputs.backend == 'llama-cpp'
180180
id: ccache-cache
181-
uses: actions/cache/restore@v4
181+
uses: actions/cache/restore@v6
182182
with:
183183
path: ~/Library/Caches/ccache
184184
key: ccache-llama-${{ runner.arch }}-${{ steps.llama-version.outputs.version }}-${{ github.run_id }}
@@ -211,7 +211,7 @@ jobs:
211211
- name: Restore Python wheel cache
212212
if: inputs.lang == 'python'
213213
id: pyenv-cache
214-
uses: actions/cache/restore@v4
214+
uses: actions/cache/restore@v6
215215
with:
216216
path: |
217217
~/Library/Caches/pip
@@ -256,14 +256,14 @@ jobs:
256256

257257
- name: Save ccache
258258
if: inputs.backend == 'llama-cpp' && github.event_name != 'pull_request'
259-
uses: actions/cache/save@v4
259+
uses: actions/cache/save@v6
260260
with:
261261
path: ~/Library/Caches/ccache
262262
key: ccache-llama-${{ runner.arch }}-${{ steps.llama-version.outputs.version }}-${{ github.run_id }}
263263

264264
- name: Save Python wheel cache
265265
if: inputs.lang == 'python' && github.event_name != 'pull_request' && steps.pyenv-cache.outputs.cache-hit != 'true'
266-
uses: actions/cache/save@v4
266+
uses: actions/cache/save@v6
267267
with:
268268
path: |
269269
~/Library/Caches/pip

0 commit comments

Comments
 (0)