From f978886067d1c93710605b2ae522775069525d6a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 10:55:33 +0200 Subject: [PATCH] Update actions/cache action to v4 (#123) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/analysis.yml | 2 +- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index 0517c9c..7ee54e5 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -24,7 +24,7 @@ jobs: ruby-version: 2.7 - name: Recreate Ruby Bundler cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-analysis-bundler-${{ hashFiles('**/Gemfile*') }} diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 80c7205..9697d0a 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -20,7 +20,7 @@ jobs: ruby-version: 2.5 - name: Recreate Ruby Bundler cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-bundler-${{ hashFiles('**/Gemfile*') }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ad09ce..2237edc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: ruby-version: ${{ matrix.ruby }} - name: Recreate Ruby Bundler cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-bundler-${{ hashFiles('**/Gemfile*') }}