Skip to content

Commit 5995464

Browse files
authored
Merge pull request #647 from Netflix/dependabot/github_actions/actions/cache-3.3.3
Bump actions/cache from 3.3.2 to 3.3.3
2 parents 5b7e10e + ed542b0 commit 5995464

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

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

3535
- name: Cache Gradle packages
36-
uses: actions/[email protected].2
36+
uses: actions/[email protected].3
3737
with:
3838
path: ~/.gradle/caches
3939
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
4040
restore-keys: ${{ runner.os }}-gradle
4141

4242
- name: Maven cache
43-
uses: actions/[email protected].2
43+
uses: actions/[email protected].3
4444
with:
4545
path: ~/.m2
4646
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
@@ -18,14 +18,14 @@ jobs:
1818
with:
1919
distribution: 'zulu'
2020
java-version: 8
21-
- uses: actions/[email protected].2
21+
- uses: actions/[email protected].3
2222
id: gradle-cache
2323
with:
2424
path: ~/.gradle/caches
2525
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
2626
restore-keys: |
2727
- ${{ runner.os }}-gradle-
28-
- uses: actions/[email protected].2
28+
- uses: actions/[email protected].3
2929
id: gradle-wrapper-cache
3030
with:
3131
path: ~/.gradle/wrapper

.github/workflows/nebula-snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
with:
2020
java-version: 8
2121
distribution: zulu
22-
- uses: actions/[email protected].2
22+
- uses: actions/[email protected].3
2323
id: gradle-cache
2424
with:
2525
path: |
2626
~/.gradle/caches
2727
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
28-
- uses: actions/[email protected].2
28+
- uses: actions/[email protected].3
2929
id: gradle-wrapper-cache
3030
with:
3131
path: |

0 commit comments

Comments
 (0)