From 21420f70711227fc4b9a26f35e8681f3c020c833 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 21 Dec 2021 21:01:09 +0000 Subject: [PATCH] Update actions/cache action to v2 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c1aef37..af2090b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,7 +25,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'pnpm' - name: Cache .pnpm-store # From https://pnpm.io/continuous-integration - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.pnpm-store key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -43,7 +43,7 @@ jobs: with: version: 6.20.3 - name: Cache .pnpm-store # From https://pnpm.io/continuous-integration - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.pnpm-store key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}