From c067aab502cb076253232e20533449336e54fa15 Mon Sep 17 00:00:00 2001 From: Michael Reichenbach Date: Sun, 10 May 2020 19:58:18 +0200 Subject: [PATCH] fix(build): cache yarn.lock instead of package-lock --- .github/workflows/gradle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 17526cf..9aebe74 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -61,7 +61,7 @@ jobs: - uses: actions/cache@v1 with: path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} + key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-node-