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

Commit 0baae75

Browse files
Merge pull request #792 from graphql-java-kickstart/renovate/actions-cache-3.x
chore(deps): update actions/cache action to v3
2 parents bd7dc3d + e152091 commit 0baae75

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
distribution: 'temurin'
2727
java-version: 8
2828
- name: Cache Gradle
29-
uses: actions/cache@v2
29+
uses: actions/cache@v3
3030
env:
3131
java-version: 8
3232
with:
@@ -54,7 +54,7 @@ jobs:
5454
distribution: 'temurin'
5555
java-version: 8
5656
- name: Cache Gradle
57-
uses: actions/cache@v2
57+
uses: actions/cache@v3
5858
env:
5959
java-version: 8
6060
with:
@@ -87,13 +87,13 @@ jobs:
8787
distribution: 'temurin'
8888
java-version: 11
8989
- name: Cache SonarCloud packages
90-
uses: actions/cache@v2
90+
uses: actions/cache@v3
9191
with:
9292
path: ~/.sonar/cache
9393
key: ${{ runner.os }}-sonar
9494
restore-keys: ${{ runner.os }}-sonar
9595
- name: Cache Gradle packages
96-
uses: actions/cache@v2
96+
uses: actions/cache@v3
9797
with:
9898
path: ~/.gradle/caches
9999
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
distribution: 'temurin'
4646
java-version: ${{ matrix.java }}
4747
- name: Cache Gradle
48-
uses: actions/cache@v2
48+
uses: actions/cache@v3
4949
env:
5050
java-version: ${{ matrix.java }}
5151
with:
@@ -89,14 +89,14 @@ jobs:
8989
java-version: 11
9090
- name: Cache SonarCloud packages
9191
if: env.SONAR_TOKEN != null
92-
uses: actions/cache@v2
92+
uses: actions/cache@v3
9393
with:
9494
path: ~/.sonar/cache
9595
key: ${{ runner.os }}-sonar
9696
restore-keys: ${{ runner.os }}-sonar
9797
- name: Cache Gradle packages
9898
if: env.SONAR_TOKEN != null
99-
uses: actions/cache@v2
99+
uses: actions/cache@v3
100100
with:
101101
path: ~/.gradle/caches
102102
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
distribution: 'temurin'
2323
java-version: 8
2424
- name: Cache Gradle
25-
uses: actions/cache@v2
25+
uses: actions/cache@v3
2626
env:
2727
java-version: 8
2828
with:
@@ -50,7 +50,7 @@ jobs:
5050
distribution: 'temurin'
5151
java-version: 8
5252
- name: Cache Gradle
53-
uses: actions/cache@v2
53+
uses: actions/cache@v3
5454
env:
5555
java-version: 8
5656
with:

0 commit comments

Comments
 (0)