From a3cc6c98542fcd5e21ca3fdf1f75cc14747b3c70 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 21 Feb 2023 15:43:28 +0000 Subject: [PATCH] :arrow_up: Updates actions/cache action to v3 Signed-off-by: Renovate Bot --- .github/workflows/build.yml | 2 +- .github/workflows/changelog.yml | 2 +- .github/workflows/preview.yml | 2 +- .github/workflows/release-semantic.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e6474650..b47147d9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v2 + - uses: actions/cache@v3 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 1a5d9911..b3a0ad3c 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -20,7 +20,7 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: vendor/bundle key: ${{ runner.os }}-changelog-gem diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index db84faff..3d18a04c 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -19,7 +19,7 @@ jobs: with: node-version: "12" - - uses: actions/cache@v2.1.4 + - uses: actions/cache@v3.2.6 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release-semantic.yml b/.github/workflows/release-semantic.yml index 9459b0fc..71bf110d 100644 --- a/.github/workflows/release-semantic.yml +++ b/.github/workflows/release-semantic.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-node@v2 - - uses: actions/cache@v1 + - uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}