From 871ac1651fda4f23e13e2ea071d20b9602bd0a1f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 20 Oct 2020 14:10:16 +0000 Subject: [PATCH] Update actions/cache action to v2 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 153e9fd..09481fb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: with: { node-version: 14 } - id: yarn_cache run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v1 + - uses: actions/cache@v2 with: path: ${{ steps.yarn_cache.outputs.dir }} key: yarn-${{ hashFiles('**/yarn.lock') }}