From 0dffa68e0b542807dfbdaca145646417cef8794a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 25 Apr 2022 02:06:32 +0000 Subject: [PATCH] Update actions/cache action to v3 --- .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 00f927e..ef7bb2c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: '**/node_modules' key: ${{ runner.os }}-lint-modules-${{ hashFiles('**/yarn.lock') }} @@ -34,7 +34,7 @@ jobs: run: git config --global core.autocrlf input - name: Check out repository uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: '**/node_modules' key: ${{ runner.os }}-test-modules-${{ hashFiles('**/yarn.lock') }}