Skip to content
This repository was archived by the owner on Dec 20, 2025. It is now read-only.

Commit 57e860f

Browse files
chore(deps): 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 2f5e98f commit 57e860f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/integration-tests-kubernetes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
distribution: 'zulu'
4949
- name: Cache on push
5050
if: github.event_name == 'push'
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
with:
5353
path: ~/.gradle
5454
key: ${{ runner.os }}-cd-it-${{ github.sha }}
@@ -57,7 +57,7 @@ jobs:
5757
${{ runner.os }}-cd-it-${{ github.event.before }}
5858
- name: Cache on pull_request
5959
if: github.event_name == 'pull_request'
60-
uses: actions/cache@v4
60+
uses: actions/cache@v5
6161
with:
6262
path: ~/.gradle
6363
key: ${{ runner.os }}-cd-it-${{ github.event.pull_request.head.sha }}

.github/workflows/integration_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
distribution: 'zulu'
2424
- name: Cache on push
2525
if: github.event_name == 'push'
26-
uses: actions/cache@v4
26+
uses: actions/cache@v5
2727
with:
2828
path: ~/.gradle
2929
key: ${{ runner.os }}-cd-it-${{ github.sha }}
@@ -32,7 +32,7 @@ jobs:
3232
${{ runner.os }}-cd-it-${{ github.event.before }}
3333
- name: Cache on pull_request
3434
if: github.event_name == 'pull_request'
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
with:
3737
path: ~/.gradle
3838
key: ${{ runner.os }}-cd-it-${{ github.event.pull_request.head.sha }}

0 commit comments

Comments
 (0)