Skip to content

Commit e126859

Browse files
Merge pull request #279 from bernardladenthin/dependabot/github_actions/actions/cache-6
build(deps): bump actions/cache from 5 to 6
2 parents 24cf44e + c76f424 commit e126859

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ jobs:
768768
# workflow_dispatch input / USE_CACHE env. Not Depot — GB-scale blobs are usage-priced
769769
# there and its file cache needs Depot-hosted runners. See CLAUDE.md.
770770
- name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace)
771-
uses: actions/cache@v5
771+
uses: actions/cache@v6
772772
with:
773773
path: models/
774774
# GGUF is platform-independent, so ubuntu + macOS + Windows share one entry;
@@ -911,7 +911,7 @@ jobs:
911911
# workflow_dispatch input / USE_CACHE env. Not Depot — GB-scale blobs are usage-priced
912912
# there and its file cache needs Depot-hosted runners. See CLAUDE.md.
913913
- name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace)
914-
uses: actions/cache@v5
914+
uses: actions/cache@v6
915915
with:
916916
path: models/
917917
# GGUF is platform-independent, so ubuntu + macOS + Windows share one entry;
@@ -1000,7 +1000,7 @@ jobs:
10001000
# workflow_dispatch input / USE_CACHE env. Not Depot — GB-scale blobs are usage-priced
10011001
# there and its file cache needs Depot-hosted runners. See CLAUDE.md.
10021002
- name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace)
1003-
uses: actions/cache@v5
1003+
uses: actions/cache@v6
10041004
with:
10051005
path: models/
10061006
# GGUF is platform-independent, so ubuntu + macOS + Windows share one entry;
@@ -1089,7 +1089,7 @@ jobs:
10891089
# workflow_dispatch input / USE_CACHE env. Not Depot — GB-scale blobs are usage-priced
10901090
# there and its file cache needs Depot-hosted runners. See CLAUDE.md.
10911091
- name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace)
1092-
uses: actions/cache@v5
1092+
uses: actions/cache@v6
10931093
with:
10941094
path: models/
10951095
# GGUF is platform-independent, so ubuntu + macOS + Windows share one entry;
@@ -1175,7 +1175,7 @@ jobs:
11751175
name: Windows-x86_64-libraries
11761176
path: ${{ github.workspace }}/src/main/resources/net/ladenthin/llama/
11771177
- name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace)
1178-
uses: actions/cache@v5
1178+
uses: actions/cache@v6
11791179
with:
11801180
path: models/
11811181
# GGUF is platform-independent, so ubuntu + macOS + Windows share one entry;
@@ -1284,7 +1284,7 @@ jobs:
12841284
name: Windows-x86_64-ninja
12851285
path: ${{ github.workspace }}/src/main/resources/net/ladenthin/llama/
12861286
- name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace)
1287-
uses: actions/cache@v5
1287+
uses: actions/cache@v6
12881288
with:
12891289
path: models/
12901290
# GGUF is platform-independent, so ubuntu + macOS + Windows share one entry;

.github/workflows/sonarqube.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
java-version: 21
2424
distribution: 'zulu'
2525
- name: Cache SonarQube packages
26-
uses: actions/cache@v5
26+
uses: actions/cache@v6
2727
with:
2828
path: ~/.sonar/cache
2929
key: ${{ runner.os }}-sonar
3030
restore-keys: ${{ runner.os }}-sonar
3131
- name: Cache Maven packages
32-
uses: actions/cache@v5
32+
uses: actions/cache@v6
3333
with:
3434
path: ~/.m2
3535
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)