From c65e89d69dbbc79b7f0cdeffdb19818841ce26c2 Mon Sep 17 00:00:00 2001 From: Takeshi Kishi Date: Fri, 29 May 2020 18:27:41 +0900 Subject: [PATCH] update actions/cache to v2 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d9521c8..7146095 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,8 +25,8 @@ jobs: with: ruby-version: 2.6.x - name: Cache gem modules - uses: actions/cache@v1 - if: matrix.os == 'ubuntu-latest' + uses: actions/cache@v2 + if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}