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

Commit d025bf0

Browse files
authored
Merge pull request #589 from graphql-java-kickstart/renovate/actions-cache-2.x
Update actions/cache action to v2
2 parents c1c5834 + 57fe4c4 commit d025bf0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ jobs:
8181
with:
8282
java-version: 11
8383
- name: Cache SonarCloud packages
84-
uses: actions/cache@v1
84+
uses: actions/cache@v2
8585
with:
8686
path: ~/.sonar/cache
8787
key: ${{ runner.os }}-sonar
8888
restore-keys: ${{ runner.os }}-sonar
8989
- name: Cache Gradle packages
90-
uses: actions/cache@v1
90+
uses: actions/cache@v2
9191
with:
9292
path: ~/.gradle/caches
9393
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ jobs:
6565
java-version: 11
6666
- name: Cache SonarCloud packages
6767
if: env.SONAR_TOKEN != null
68-
uses: actions/cache@v1
68+
uses: actions/cache@v2
6969
with:
7070
path: ~/.sonar/cache
7171
key: ${{ runner.os }}-sonar
7272
restore-keys: ${{ runner.os }}-sonar
7373
- name: Cache Gradle packages
7474
if: env.SONAR_TOKEN != null
75-
uses: actions/cache@v1
75+
uses: actions/cache@v2
7676
with:
7777
path: ~/.gradle/caches
7878
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

0 commit comments

Comments
 (0)