From 6d7e8c69a06c882bb16432cd43a29c8c80c321da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 17:16:38 +0800 Subject: [PATCH] Bump actions/cache from 4 to 5 (#22531) Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/docker-release.yml | 2 +- .github/workflows/gradle-plugin-tests.yaml | 2 +- .github/workflows/gradle-test.yaml | 4 ++-- .github/workflows/linux.yaml | 4 ++-- .github/workflows/maven-plugin-tests.yaml | 2 +- .github/workflows/maven-release.yml | 2 +- .github/workflows/openapi-generator.yaml | 4 ++-- .github/workflows/samples-clojure.yaml | 2 +- .github/workflows/samples-dart.yaml | 2 +- .github/workflows/samples-groovy.yaml | 2 +- .github/workflows/samples-java-client-echo-api-jdk11.yaml | 2 +- .github/workflows/samples-java-client-echo-api-jdk17.yaml | 2 +- .github/workflows/samples-java-client-echo-api-jdk8.yaml | 2 +- .github/workflows/samples-java-client-jdk11.yaml | 6 +++--- .github/workflows/samples-java-client-jdk17.yaml | 6 +++--- .github/workflows/samples-java-dubbo.yaml | 2 +- .github/workflows/samples-java-helidon-v3.yaml | 2 +- .github/workflows/samples-java-helidon-v4.yaml | 2 +- .github/workflows/samples-java-petsore-client-jdk11.yaml | 2 +- .github/workflows/samples-java-play-framework.yaml | 2 +- .github/workflows/samples-java-sbt.yaml | 2 +- .github/workflows/samples-java-server-jdk8.yaml | 2 +- .github/workflows/samples-java-wiremock.yaml | 2 +- .github/workflows/samples-jaxrs-jdk11.yaml | 2 +- .github/workflows/samples-jaxrs.yaml | 2 +- .github/workflows/samples-jdk17.yaml | 2 +- .github/workflows/samples-jdk21.yaml | 2 +- .github/workflows/samples-kotlin-client.yaml | 2 +- .github/workflows/samples-kotlin-echo-api.yaml | 2 +- .github/workflows/samples-kotlin-server-jdk17.yaml | 2 +- .github/workflows/samples-kotlin-server-jdk21.yaml | 2 +- .github/workflows/samples-kotlin-server.yaml | 2 +- .github/workflows/samples-kotlin-wiremock.yaml | 2 +- .github/workflows/samples-python-petstore.yaml | 2 +- .github/workflows/samples-python-pydantic-v1-petstore.yaml | 2 +- .github/workflows/samples-scala-client.yaml | 2 +- .github/workflows/samples-scala-jdk8.yaml | 2 +- .github/workflows/samples-scala-server.yaml | 2 +- .github/workflows/samples-spring-jdk17.yaml | 2 +- .github/workflows/samples-spring.yaml | 2 +- .github/workflows/windows.yaml | 2 +- 41 files changed, 48 insertions(+), 48 deletions(-) diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index e682027e47fe..41f121257090 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -21,7 +21,7 @@ jobs: java-version: 11 distribution: 'zulu' - name: Cache Maven packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/gradle-plugin-tests.yaml b/.github/workflows/gradle-plugin-tests.yaml index 6701169a2a51..293cc36daa9b 100644 --- a/.github/workflows/gradle-plugin-tests.yaml +++ b/.github/workflows/gradle-plugin-tests.yaml @@ -21,7 +21,7 @@ jobs: distribution: 'temurin' cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-maven-repository with: diff --git a/.github/workflows/gradle-test.yaml b/.github/workflows/gradle-test.yaml index 32c4d5f95c7c..26f0b3f1d31a 100644 --- a/.github/workflows/gradle-test.yaml +++ b/.github/workflows/gradle-test.yaml @@ -40,14 +40,14 @@ jobs: cache: gradle # Cache Gradle Dependencies - name: Setup Gradle Dependencies Cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} # Cache Gradle Wrapper - name: Setup Gradle Wrapper Cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.gradle/wrapper key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 35a5916c45a4..9426e5b96ce5 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -29,14 +29,14 @@ jobs: java-version: ${{ matrix.java }} cache: gradle - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml', 'modules/**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: | ~/.gradle/caches diff --git a/.github/workflows/maven-plugin-tests.yaml b/.github/workflows/maven-plugin-tests.yaml index 400a52a7897e..d57be992a169 100644 --- a/.github/workflows/maven-plugin-tests.yaml +++ b/.github/workflows/maven-plugin-tests.yaml @@ -20,7 +20,7 @@ jobs: java-version: 11 distribution: 'temurin' - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-maven-repository with: diff --git a/.github/workflows/maven-release.yml b/.github/workflows/maven-release.yml index ba1d40235dd2..c2f8a9151fbd 100644 --- a/.github/workflows/maven-release.yml +++ b/.github/workflows/maven-release.yml @@ -18,7 +18,7 @@ jobs: java-version: 11 distribution: 'zulu' - name: Cache Maven packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/openapi-generator.yaml b/.github/workflows/openapi-generator.yaml index 2bae848da07e..f1ef19d0f3a3 100644 --- a/.github/workflows/openapi-generator.yaml +++ b/.github/workflows/openapi-generator.yaml @@ -23,7 +23,7 @@ jobs: distribution: 'temurin' cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-maven-repository with: @@ -62,7 +62,7 @@ jobs: distribution: 'temurin' cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-maven-repository with: diff --git a/.github/workflows/samples-clojure.yaml b/.github/workflows/samples-clojure.yaml index ae493e77d6ec..60d5af12388e 100644 --- a/.github/workflows/samples-clojure.yaml +++ b/.github/workflows/samples-clojure.yaml @@ -34,7 +34,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-dart.yaml b/.github/workflows/samples-dart.yaml index aeb5637634d1..624382212510 100644 --- a/.github/workflows/samples-dart.yaml +++ b/.github/workflows/samples-dart.yaml @@ -24,7 +24,7 @@ jobs: java-version: 11 cache: maven - name: Cache test dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: pub-cache with: diff --git a/.github/workflows/samples-groovy.yaml b/.github/workflows/samples-groovy.yaml index 819477160158..7f6b5a26aea5 100644 --- a/.github/workflows/samples-groovy.yaml +++ b/.github/workflows/samples-groovy.yaml @@ -28,7 +28,7 @@ jobs: java-version: 8 cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-client-echo-api-jdk11.yaml b/.github/workflows/samples-java-client-echo-api-jdk11.yaml index 4e012e81b5c1..af72c09d0cfb 100644 --- a/.github/workflows/samples-java-client-echo-api-jdk11.yaml +++ b/.github/workflows/samples-java-client-echo-api-jdk11.yaml @@ -28,7 +28,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-client-echo-api-jdk17.yaml b/.github/workflows/samples-java-client-echo-api-jdk17.yaml index c2e0d8efa28c..930cfe32a32f 100644 --- a/.github/workflows/samples-java-client-echo-api-jdk17.yaml +++ b/.github/workflows/samples-java-client-echo-api-jdk17.yaml @@ -29,7 +29,7 @@ jobs: distribution: 'temurin' java-version: 17 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-client-echo-api-jdk8.yaml b/.github/workflows/samples-java-client-echo-api-jdk8.yaml index f6e10317d241..e1308c93d25e 100644 --- a/.github/workflows/samples-java-client-echo-api-jdk8.yaml +++ b/.github/workflows/samples-java-client-echo-api-jdk8.yaml @@ -35,7 +35,7 @@ jobs: distribution: 'temurin' java-version: 8 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-client-jdk11.yaml b/.github/workflows/samples-java-client-jdk11.yaml index 1c9d5c3352c1..fc9f0eb2385f 100644 --- a/.github/workflows/samples-java-client-jdk11.yaml +++ b/.github/workflows/samples-java-client-jdk11.yaml @@ -121,7 +121,7 @@ jobs: java-version: 11 cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: @@ -133,7 +133,7 @@ jobs: run: mvn clean package --no-transfer-progress - name: Cache gradle dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: gradle-caches with: @@ -141,7 +141,7 @@ jobs: key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} - name: Cache gradle wrapper - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: gradle-wrapper with: diff --git a/.github/workflows/samples-java-client-jdk17.yaml b/.github/workflows/samples-java-client-jdk17.yaml index 6923970f0260..22c192c63761 100644 --- a/.github/workflows/samples-java-client-jdk17.yaml +++ b/.github/workflows/samples-java-client-jdk17.yaml @@ -44,7 +44,7 @@ jobs: java-version: 17 cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: @@ -57,7 +57,7 @@ jobs: run: mvn clean package --no-transfer-progress - name: Cache gradle dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: gradle-caches with: @@ -65,7 +65,7 @@ jobs: key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }} - name: Cache gradle wrapper - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: gradle-wrapper with: diff --git a/.github/workflows/samples-java-dubbo.yaml b/.github/workflows/samples-java-dubbo.yaml index 16842d995fc8..3d2accbe998b 100644 --- a/.github/workflows/samples-java-dubbo.yaml +++ b/.github/workflows/samples-java-dubbo.yaml @@ -25,7 +25,7 @@ jobs: distribution: 'temurin' java-version: 17 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-helidon-v3.yaml b/.github/workflows/samples-java-helidon-v3.yaml index a89ec9b2499b..19d30cb27c29 100644 --- a/.github/workflows/samples-java-helidon-v3.yaml +++ b/.github/workflows/samples-java-helidon-v3.yaml @@ -32,7 +32,7 @@ jobs: distribution: 'temurin' java-version: ${{ matrix.version }} - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-helidon-v4.yaml b/.github/workflows/samples-java-helidon-v4.yaml index cd5462d0f35c..c5aec00d2c75 100644 --- a/.github/workflows/samples-java-helidon-v4.yaml +++ b/.github/workflows/samples-java-helidon-v4.yaml @@ -33,7 +33,7 @@ jobs: distribution: 'temurin' java-version: ${{ matrix.version }} - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-petsore-client-jdk11.yaml b/.github/workflows/samples-java-petsore-client-jdk11.yaml index 71fe8d7a42f9..91f389fbeab1 100644 --- a/.github/workflows/samples-java-petsore-client-jdk11.yaml +++ b/.github/workflows/samples-java-petsore-client-jdk11.yaml @@ -53,7 +53,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-play-framework.yaml b/.github/workflows/samples-java-play-framework.yaml index 4e54f6788506..fd1c6b014e90 100644 --- a/.github/workflows/samples-java-play-framework.yaml +++ b/.github/workflows/samples-java-play-framework.yaml @@ -35,7 +35,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-sbt.yaml b/.github/workflows/samples-java-sbt.yaml index 3c4dd3620d3a..b8165742ab69 100644 --- a/.github/workflows/samples-java-sbt.yaml +++ b/.github/workflows/samples-java-sbt.yaml @@ -26,7 +26,7 @@ jobs: - name: Setup sbt launcher uses: sbt/setup-sbt@v1 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-server-jdk8.yaml b/.github/workflows/samples-java-server-jdk8.yaml index 9968f63ef77a..682499bcf3bf 100644 --- a/.github/workflows/samples-java-server-jdk8.yaml +++ b/.github/workflows/samples-java-server-jdk8.yaml @@ -37,7 +37,7 @@ jobs: distribution: 'temurin' java-version: 8 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-java-wiremock.yaml b/.github/workflows/samples-java-wiremock.yaml index f18ee9f7cafb..be1f677e978a 100644 --- a/.github/workflows/samples-java-wiremock.yaml +++ b/.github/workflows/samples-java-wiremock.yaml @@ -23,7 +23,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-jaxrs-jdk11.yaml b/.github/workflows/samples-jaxrs-jdk11.yaml index de753760b009..9e12d5d80d84 100644 --- a/.github/workflows/samples-jaxrs-jdk11.yaml +++ b/.github/workflows/samples-jaxrs-jdk11.yaml @@ -24,7 +24,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-jaxrs.yaml b/.github/workflows/samples-jaxrs.yaml index 2a555843f284..a6a1fc384b41 100644 --- a/.github/workflows/samples-jaxrs.yaml +++ b/.github/workflows/samples-jaxrs.yaml @@ -44,7 +44,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-jdk17.yaml b/.github/workflows/samples-jdk17.yaml index 14ca4e94567e..250520df6d9a 100644 --- a/.github/workflows/samples-jdk17.yaml +++ b/.github/workflows/samples-jdk17.yaml @@ -64,7 +64,7 @@ jobs: distribution: 'temurin' java-version: 17 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-jdk21.yaml b/.github/workflows/samples-jdk21.yaml index 97990d2ed9fb..9e04ac03c54a 100644 --- a/.github/workflows/samples-jdk21.yaml +++ b/.github/workflows/samples-jdk21.yaml @@ -37,7 +37,7 @@ jobs: distribution: 'temurin' java-version: 21 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-kotlin-client.yaml b/.github/workflows/samples-kotlin-client.yaml index 23c862b2f758..506e8d3fecd3 100644 --- a/.github/workflows/samples-kotlin-client.yaml +++ b/.github/workflows/samples-kotlin-client.yaml @@ -78,7 +78,7 @@ jobs: java-version: 11 cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-kotlin-echo-api.yaml b/.github/workflows/samples-kotlin-echo-api.yaml index a662964ed66c..683f06f070bf 100644 --- a/.github/workflows/samples-kotlin-echo-api.yaml +++ b/.github/workflows/samples-kotlin-echo-api.yaml @@ -28,7 +28,7 @@ jobs: java-version: 17 cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-kotlin-server-jdk17.yaml b/.github/workflows/samples-kotlin-server-jdk17.yaml index 999e2f4d817b..2669108f94c4 100644 --- a/.github/workflows/samples-kotlin-server-jdk17.yaml +++ b/.github/workflows/samples-kotlin-server-jdk17.yaml @@ -61,7 +61,7 @@ jobs: java-version: 17 cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-kotlin-server-jdk21.yaml b/.github/workflows/samples-kotlin-server-jdk21.yaml index 5c013d4fc9ee..5670620a4017 100644 --- a/.github/workflows/samples-kotlin-server-jdk21.yaml +++ b/.github/workflows/samples-kotlin-server-jdk21.yaml @@ -34,7 +34,7 @@ jobs: java-version: 21 cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-kotlin-server.yaml b/.github/workflows/samples-kotlin-server.yaml index 0ab8e5389059..509f087e2856 100644 --- a/.github/workflows/samples-kotlin-server.yaml +++ b/.github/workflows/samples-kotlin-server.yaml @@ -65,7 +65,7 @@ jobs: java-version: 11 cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-kotlin-wiremock.yaml b/.github/workflows/samples-kotlin-wiremock.yaml index b968908fe756..d2a13fc6fa32 100644 --- a/.github/workflows/samples-kotlin-wiremock.yaml +++ b/.github/workflows/samples-kotlin-wiremock.yaml @@ -28,7 +28,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-python-petstore.yaml b/.github/workflows/samples-python-petstore.yaml index f5a0254f03ea..89513a8f298c 100644 --- a/.github/workflows/samples-python-petstore.yaml +++ b/.github/workflows/samples-python-petstore.yaml @@ -53,7 +53,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: ${{ runner.os }}-python-${{ steps.py.outputs.python-version }}- path: | diff --git a/.github/workflows/samples-python-pydantic-v1-petstore.yaml b/.github/workflows/samples-python-pydantic-v1-petstore.yaml index 4e684873a994..dce77c6e1481 100644 --- a/.github/workflows/samples-python-pydantic-v1-petstore.yaml +++ b/.github/workflows/samples-python-pydantic-v1-petstore.yaml @@ -38,7 +38,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: ${{ runner.os }}-python-${{ steps.py.outputs.python-version }}- path: | diff --git a/.github/workflows/samples-scala-client.yaml b/.github/workflows/samples-scala-client.yaml index b7638ef82828..c4f4ba939fb9 100644 --- a/.github/workflows/samples-scala-client.yaml +++ b/.github/workflows/samples-scala-client.yaml @@ -58,7 +58,7 @@ jobs: - name: Setup sbt launcher uses: sbt/setup-sbt@v1 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-scala-jdk8.yaml b/.github/workflows/samples-scala-jdk8.yaml index 6d5420ba7d27..21cfb3eadca5 100644 --- a/.github/workflows/samples-scala-jdk8.yaml +++ b/.github/workflows/samples-scala-jdk8.yaml @@ -26,7 +26,7 @@ jobs: - name: Setup sbt launcher uses: sbt/setup-sbt@v1 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-scala-server.yaml b/.github/workflows/samples-scala-server.yaml index 86544babdca4..8d999d95b85f 100644 --- a/.github/workflows/samples-scala-server.yaml +++ b/.github/workflows/samples-scala-server.yaml @@ -31,7 +31,7 @@ jobs: - name: Setup sbt launcher uses: sbt/setup-sbt@v1 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-spring-jdk17.yaml b/.github/workflows/samples-spring-jdk17.yaml index 154a47db7fbf..a72a99141c8d 100644 --- a/.github/workflows/samples-spring-jdk17.yaml +++ b/.github/workflows/samples-spring-jdk17.yaml @@ -49,7 +49,7 @@ jobs: distribution: 'temurin' java-version: 17 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/samples-spring.yaml b/.github/workflows/samples-spring.yaml index 4e0ad17a885b..9bc148dda40a 100644 --- a/.github/workflows/samples-spring.yaml +++ b/.github/workflows/samples-spring.yaml @@ -68,7 +68,7 @@ jobs: distribution: 'temurin' java-version: 8 - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: maven-repository with: diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index d66b278d28db..a10deae5b731 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -26,7 +26,7 @@ jobs: distribution: 'temurin' cache: gradle - name: Cache maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: cache-maven-repository with: