From 2e93dc99c6bfa451955bdd49d3fe578a68afe8da Mon Sep 17 00:00:00 2001 From: joffrey-bion Date: Sat, 12 Dec 2020 22:50:45 +0100 Subject: Avoid too specific version for actions/cache --- .github/workflows/ci.yml | 4 ++-- 1 file 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') }} -- cgit