Skip to content

Commit b300c5c

Browse files
Bump actions/cache from 5.0.2 to 5.0.3
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.2 to 5.0.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5.0.2...v5.0.3) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2e8f45c commit b300c5c

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@v5.0.2
31+
- uses: actions/cache@v5.0.3
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@v5.0.2
39+
uses: actions/cache@v5.0.3
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@v5.0.2
46+
uses: actions/cache@v5.0.3
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
@@ -16,14 +16,14 @@ jobs:
1616
with:
1717
distribution: 'zulu'
1818
java-version: 8
19-
- uses: actions/cache@v5.0.2
19+
- uses: actions/cache@v5.0.3
2020
id: gradle-cache
2121
with:
2222
path: ~/.gradle/caches
2323
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
2424
restore-keys: |
2525
- ${{ runner.os }}-gradle-
26-
- uses: actions/cache@v5.0.2
26+
- uses: actions/cache@v5.0.3
2727
id: gradle-wrapper-cache
2828
with:
2929
path: ~/.gradle/wrapper

0 commit comments

Comments
 (0)