From 42419866d7391423ec1020412dae53674376b7a2 Mon Sep 17 00:00:00 2001 From: mi-wada Date: Thu, 29 Aug 2024 15:06:12 +0900 Subject: [PATCH] chore: Update actions/cache to v4 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 299ea4a..bf5b850 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: ruby-version: ${{ matrix.ruby }} - name: Generate Gemfile.lock run: bundle lock --lockfile=Gemfile.lock - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: vendor/bundle key: bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }} @@ -54,7 +54,7 @@ jobs: ruby-version: ${{ matrix.ruby }} - name: Generate Gemfile.lock run: bundle lock --lockfile=Gemfile.lock - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: vendor/bundle key: bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}