summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@booking.com>2020-09-10 19:23:41 +0200
committerJoffrey Bion <joffrey.bion@booking.com>2020-09-10 19:25:43 +0200
commitd43f3027f1912b7af709e1f42dc7de546c4852bc (patch)
tree3a687f7a4df108d85493b21f4149d15c4f63175d /.github/workflows
parentUpgrade setup-java Github Action to 1.4.2 (diff)
downloadseven-wonders-d43f3027f1912b7af709e1f42dc7de546c4852bc.tar.gz
seven-wonders-d43f3027f1912b7af709e1f42dc7de546c4852bc.tar.bz2
seven-wonders-d43f3027f1912b7af709e1f42dc7de546c4852bc.zip
Upgrade GitHub action/cache to v2.1.1
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