summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2020-12-12 22:50:45 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2020-12-12 22:50:45 +0100
commit2e93dc99c6bfa451955bdd49d3fe578a68afe8da (patch)
tree989ab1587d3da57196a10b57b4efcc6a9d890b57 /.github/workflows
parentUpgrade to Java 15 (diff)
downloadseven-wonders-2e93dc99c6bfa451955bdd49d3fe578a68afe8da.tar.gz
seven-wonders-2e93dc99c6bfa451955bdd49d3fe578a68afe8da.tar.bz2
seven-wonders-2e93dc99c6bfa451955bdd49d3fe578a68afe8da.zip
Avoid too specific version for actions/cache
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 999bd78d..5f4ecc6a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -18,14 +18,14 @@ jobs:
java-version: 15
- name: Gradle build cache
- uses: actions/cache@v2.1.1
+ uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-build-${{ hashFiles('**/*.gradle*') }}
restore-keys: ${{ runner.os }}-gradle-build-
- name: Gradle wrapper cache
- uses: actions/cache@v2.1.1
+ uses: actions/cache@v2
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}
bgstack15