From 967ec007a322294a3771e2ce1a5f9ec58eaed984 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Thu, 26 Jun 2025 14:12:50 +0200 Subject: [PATCH] CI: Try to use bundler-cache everywhere --- .github/workflows/super_diff.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/super_diff.yml b/.github/workflows/super_diff.yml index bbd48caa..7b00bf56 100644 --- a/.github/workflows/super_diff.yml +++ b/.github/workflows/super_diff.yml @@ -29,9 +29,7 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - bundler-cache: true - - name: Install Ruby dependencies - run: bundle install + bundler-cache: true # `bundle install` and cache gems. - name: Use Node.js uses: actions/setup-node@v4 with: @@ -57,6 +55,7 @@ jobs: - "3.1" - "3.2" - "3.3" + - "3.4" rails_appraisal: - rails_6_1 - rails_7_0 @@ -71,6 +70,10 @@ jobs: exclude: - ruby: "3.1" rails_appraisal: "rails_8_0" + - ruby: "3.4" + rails_appraisal: "rails_6_1" + - ruby: "3.4" + rails_appraisal: "rails_7_0" env: BUNDLE_GEMFILE: gemfiles/${{ matrix.rails_appraisal }}_${{ matrix.rspec_appraisal }}.gemfile steps: