From c76f42446124e625b116a5ccc43031b18dd1011d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 16:04:14 +0000 Subject: [PATCH] build(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/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](https://github.com/actions/cache/compare/v5...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] --- .github/workflows/publish.yml | 12 ++++++------ .github/workflows/sonarqube.yml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c2d82f36..2cbe7165 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -768,7 +768,7 @@ jobs: # workflow_dispatch input / USE_CACHE env. Not Depot — GB-scale blobs are usage-priced # there and its file cache needs Depot-hosted runners. See CLAUDE.md. - name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: models/ # GGUF is platform-independent, so ubuntu + macOS + Windows share one entry; @@ -911,7 +911,7 @@ jobs: # workflow_dispatch input / USE_CACHE env. Not Depot — GB-scale blobs are usage-priced # there and its file cache needs Depot-hosted runners. See CLAUDE.md. - name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: models/ # GGUF is platform-independent, so ubuntu + macOS + Windows share one entry; @@ -1000,7 +1000,7 @@ jobs: # workflow_dispatch input / USE_CACHE env. Not Depot — GB-scale blobs are usage-priced # there and its file cache needs Depot-hosted runners. See CLAUDE.md. - name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: models/ # GGUF is platform-independent, so ubuntu + macOS + Windows share one entry; @@ -1089,7 +1089,7 @@ jobs: # workflow_dispatch input / USE_CACHE env. Not Depot — GB-scale blobs are usage-priced # there and its file cache needs Depot-hosted runners. See CLAUDE.md. - name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: models/ # GGUF is platform-independent, so ubuntu + macOS + Windows share one entry; @@ -1175,7 +1175,7 @@ jobs: name: Windows-x86_64-libraries path: ${{ github.workspace }}/src/main/resources/net/ladenthin/llama/ - name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: models/ # GGUF is platform-independent, so ubuntu + macOS + Windows share one entry; @@ -1284,7 +1284,7 @@ jobs: name: Windows-x86_64-ninja path: ${{ github.workspace }}/src/main/resources/net/ladenthin/llama/ - name: Cache GGUF models (GitHub Actions cache; avoids re-downloading from HuggingFace) - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: models/ # GGUF is platform-independent, so ubuntu + macOS + Windows share one entry; diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml index e580d5f2..b6a4808b 100644 --- a/.github/workflows/sonarqube.yml +++ b/.github/workflows/sonarqube.yml @@ -23,13 +23,13 @@ jobs: java-version: 21 distribution: 'zulu' - name: Cache SonarQube packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Maven packages - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}