From d204ddff1c97a2c134a71308777234c75c28fa78 Mon Sep 17 00:00:00 2001 From: Ryan Mitchell <78386855+rmitchell-sq@users.noreply.github.com> Date: Thu, 6 Mar 2025 13:42:01 -0800 Subject: [PATCH 1/3] Update version of actions/cache in Github workflow Versions older than V3 are now deprecated and won't run: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3a9f1e5..4c5b1be 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@v3 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} From 97077be1020766b5b663211c80a5b01655d77af3 Mon Sep 17 00:00:00 2001 From: Ryan Mitchell <78386855+rmitchell-sq@users.noreply.github.com> Date: Thu, 6 Mar 2025 13:51:03 -0800 Subject: [PATCH 2/3] Update actions/cache version in workflow --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c5b1be..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@v3 + - uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} From 1ce4117d7c7ae3b115d26b9bd2cf340014750bd0 Mon Sep 17 00:00:00 2001 From: Ryan Mitchell <78386855+rmitchell-sq@users.noreply.github.com> Date: Thu, 6 Mar 2025 14:14:35 -0800 Subject: [PATCH 3/3] Update Appraisals to match currently supported versions --- Appraisals | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) 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 +