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') }}