From 61f53c05bf4c540f14b0b794b7c55075bb87bf3e Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 21 Mar 2022 11:46:21 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v3 --- .github/workflows/build.yml | 2 +- .github/workflows/publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 498a22e..8b34500 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,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/publish.yml b/.github/workflows/publish.yml index 387aab3..2451382 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.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') }}