From 1293495904677e506a4b5daa360c0966983a5b51 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 22 Nov 2023 00:45:42 +0100 Subject: [PATCH] build: Use dedicated Gradle cache action --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2483d520..f7e5ddce2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,15 +24,15 @@ jobs: persist-credentials: false fetch-depth: 0 - - name: Cache + - name: Cache Node modules uses: actions/cache@v3 with: path: | - ~/.gradle/caches - ~/.gradle/wrapper - .gradle node_modules - key: gradle-npm-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'package-lock.json') }} + key: npm-${{ hashFiles('package-lock.json') }} + + - name: Cache Gradle + uses: burrunan/gradle-cache-action@v1 - name: Build with Gradle env: