Skip to content

Commit 1248afe

Browse files
Bump actions/cache from 4 to 5
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](actions/cache@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] <support@github.com>
1 parent 9efca5e commit 1248afe

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-artifacts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
java-version: ${{ inputs.java-version }}
3434

3535
- name: Cache Gradle Toolchain JDKs
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ~/.gradle/jdks
3939
key: "${{ runner.os }}-gradle-jdks"
@@ -45,7 +45,7 @@ jobs:
4545
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
4646

4747
- name: Cache Gradle packages
48-
uses: actions/cache@v4
48+
uses: actions/cache@v5
4949
with:
5050
path: ~/.gradle/caches
5151
key: "${{ runner.os }}-gradle-caches }}"
@@ -58,7 +58,7 @@ jobs:
5858
run: ./gradlew clean check integrationTest --scan --stacktrace
5959

6060
- name: Cache SonarCloud packages
61-
uses: actions/cache@v4
61+
uses: actions/cache@v5
6262
if: ${{ inputs.run-sonar }}
6363
with:
6464
path: ~/.sonar/cache

.github/workflows/gh-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ jobs:
3636
sudo apt-get install -y graphviz
3737
3838
- name: Cache Gradle packages
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: ~/.gradle/caches
4242
key: "${{ runner.os }}-gradle-caches }}"
4343
restore-keys: ${{ runner.os }}-gradle-caches
4444

4545
- name: Cache .doctoolchain
46-
uses: actions/cache@v4
46+
uses: actions/cache@v5
4747
with:
4848
path: ~/.doctoolchain
4949
key: "${{ runner.os }}-doctoolchain }}"

0 commit comments

Comments
 (0)