diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3a9f1e5..c6b82ba 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,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..e7f358b 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,13 @@ 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 +