Skip to content

Commit caf92ce

Browse files
committed
Github action: cache v4
1 parent 357e8ba commit caf92ce

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/nebula-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
uses: actions/setup-java@v1
2626
with:
2727
java-version: ${{ matrix.java }}
28-
- uses: actions/cache@v1
28+
- uses: actions/cache@v4
2929
id: gradle-cache
3030
with:
3131
path: ~/.gradle/caches
3232
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
3333
restore-keys: |
3434
- ${{ runner.os }}-gradle-
35-
- uses: actions/cache@v1
35+
- uses: actions/cache@v4
3636
id: gradle-wrapper-cache
3737
with:
3838
path: ~/.gradle/wrapper

.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
uses: actions/setup-java@v1
1919
with:
2020
java-version: 1.8
21-
- uses: actions/cache@v1
21+
- uses: actions/cache@v4
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/cache@v1
28+
- uses: actions/cache@v4
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
@@ -20,13 +20,13 @@ jobs:
2020
uses: actions/setup-java@v1
2121
with:
2222
java-version: 8
23-
- uses: actions/cache@v2
23+
- uses: actions/cache@v4
2424
id: gradle-cache
2525
with:
2626
path: |
2727
~/.gradle/caches
2828
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
29-
- uses: actions/cache@v2
29+
- uses: actions/cache@v4
3030
id: gradle-wrapper-cache
3131
with:
3232
path: |

0 commit comments

Comments
 (0)