From 1c7d8fcaff02e316c1451a97c7fd305f01be0aef Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 21 Mar 2022 11:02:59 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v3 --- .github/workflows/build.yml | 2 +- .github/workflows/github-pages.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 00c61a1..cde8eb5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v3 - id: yarn_cache run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ steps.yarn_cache.outputs.dir }} key: yarn-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index c4ad689..16992ce 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -14,7 +14,7 @@ jobs: - run: git subtree add -P build origin gh-pages - id: yarn_cache run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ steps.yarn_cache.outputs.dir }} key: yarn-${{ hashFiles('**/yarn.lock') }}