Skip to content

Commit 8f49bab

Browse files
Bump actions/cache from 4.2.4 to 4.3.0
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.4 to 4.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.4...v4.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a07759a commit 8f49bab

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ jobs:
2828
python -m pip install --upgrade pip
2929
if [ -f scripts/requirements.txt ]; then pip install -r scripts/requirements.txt; fi
3030
31-
- uses: actions/cache@v4.2.4
31+
- uses: actions/cache@v4.3.0
3232
id: gradle-wrapper-cache
3333
with:
3434
path: ~/.gradle/wrapper
3535
key: ${{ runner.os }}-gradlewrapper-${{ hashFiles('gradle/wrapper/*') }}
3636
restore-keys: ${{ runner.os }}-gradlewrapper-
3737

3838
- name: Cache Gradle packages
39-
uses: actions/cache@v4.2.4
39+
uses: actions/cache@v4.3.0
4040
with:
4141
path: ~/.gradle/caches
4242
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
4343
restore-keys: ${{ runner.os }}-gradle
4444

4545
- name: Maven cache
46-
uses: actions/cache@v4.2.4
46+
uses: actions/cache@v4.3.0
4747
with:
4848
path: ~/.m2
4949
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/nebula-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
with:
1616
distribution: 'zulu'
1717
java-version: 8
18-
- uses: actions/cache@v4.2.4
18+
- uses: actions/cache@v4.3.0
1919
id: gradle-cache
2020
with:
2121
path: ~/.gradle/caches
2222
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
2323
restore-keys: |
2424
- ${{ runner.os }}-gradle-
25-
- uses: actions/cache@v4.2.4
25+
- uses: actions/cache@v4.3.0
2626
id: gradle-wrapper-cache
2727
with:
2828
path: ~/.gradle/wrapper

0 commit comments

Comments
 (0)