From c78b166b23cf6df65846f4dc37e881d809f275af Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 17 Dec 2022 12:25:46 +0000 Subject: [PATCH] Update actions/cache action to v3 --- .github/workflows/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index d398b94..081b290 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -44,7 +44,7 @@ jobs: id: yarn-cache run: echo "::set-output name=dir::$(yarn cache dir)" - name: Yarn のキャッシュファイルを取得する - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} @@ -56,7 +56,7 @@ jobs: # run: | # gem install bundler --no-document -v 1.17.3 || true - name: RubyGems のキャッシュを復元する - uses: actions/cache@v2 + uses: actions/cache@v3 id: rubygems-cache with: path: vendor/bundle