summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c9f9d607..23b2e440 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -17,14 +17,14 @@ jobs:
java-version: 13
- name: Gradle build cache
- uses: actions/cache@v1
+ uses: actions/cache@v2.1.1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-build-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-build-
- name: Gradle wrapper cache
- uses: actions/cache@v1
+ uses: actions/cache@v2.1.1
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}
bgstack15