From e317ba8109ac50552ef7a6b86845e2449bafe02a Mon Sep 17 00:00:00 2001 From: Ryan Mitchell <78386855+rmitchell-sq@users.noreply.github.com> Date: Thu, 6 Mar 2025 14:53:51 -0800 Subject: [PATCH] Update cache action version + appraisals to match currently supported versions --- .github/workflows/test.yml | 5 ++--- Appraisals | 12 ++++++++---- gemfiles/activesupport_6_1.gemfile | 15 --------------- 3 files changed, 10 insertions(+), 22 deletions(-) delete mode 100644 gemfiles/activesupport_6_1.gemfile diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3a9f1e5..e431b95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,10 +10,9 @@ jobs: strategy: matrix: ruby: - - 3.0.0 - - 3.1.0 - 3.2.0 - 3.3.0 + - 3.4.0 name: Ruby ${{ matrix.ruby }} steps: @@ -25,7 +24,7 @@ jobs: run: yes | gem update --system --force - name: 'Update Bundler' run: gem install bundler - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} diff --git a/Appraisals b/Appraisals index ad599d1..7100217 100644 --- a/Appraisals +++ b/Appraisals @@ -1,9 +1,5 @@ # frozen_string_literal: true -appraise 'activesupport-6_1' do - gem 'activesupport', '~> 6.1' -end - appraise 'activesupport-7_0' do gem 'activesupport', '~> 7.0' end @@ -11,3 +7,11 @@ end appraise 'activesupport-7_1' do gem 'activesupport', '~> 7.1' end + +appraise 'activesupport-7_2' do + gem 'activesupport', '~> 7.2' +end + +appraise 'activesupport-8_0' do + gem 'activesupport', '~> 8.0' +end diff --git a/gemfiles/activesupport_6_1.gemfile b/gemfiles/activesupport_6_1.gemfile deleted file mode 100644 index a475159..0000000 --- a/gemfiles/activesupport_6_1.gemfile +++ /dev/null @@ -1,15 +0,0 @@ -# This file was generated by Appraisal - -source "https://rubygems.org" - -gem "pry", "~> 0.14.1" -gem "rake" -gem "rspec", "~> 3.8" -gem "rubocop", "0.63.1" -gem "activesupport", "~> 6.1" - -platforms :mri do - gem "pry-byebug", "~> 3.10.1" -end - -gemspec path: "../"