From 078a1ba07fce98ce2a1e4dbafc639c57d48c054a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 16 Mar 2023 06:44:30 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v3 --- .github/workflows/pages.yml | 2 +- .github/workflows/pull_request.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index fe7ed9a4..abd17872 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -19,7 +19,7 @@ jobs: node-version: 12.x - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: node_modules key: yarn-deps-${{ hashFiles('yarn.lock') }} diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 9d6e2411..83a20eae 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v2 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: node_modules key: yarn-deps-${{ hashFiles('yarn.lock') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1531c38b..93843abb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: node-version: 12.x - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: node_modules key: yarn-deps-${{ hashFiles('yarn.lock') }}