From b846fe30f156d7364a789011d1c08b39bb3be211 Mon Sep 17 00:00:00 2001 From: Huw Diprose Date: Wed, 30 Jul 2025 00:49:01 +0100 Subject: [PATCH 1/2] Deprecate testing in Ruby 3.1 As of July 30th 2025 it's out of a maintianance window https://www.ruby-lang.org/en/downloads/branches/ --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cd5550d8..25a62259 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,6 +1,6 @@ name: Test -on: +on: push: branches: - main @@ -14,7 +14,7 @@ jobs: strategy: matrix: - ruby: ['3.1', '3.2', '3.3'] + ruby: ['3.2', '3.3'] steps: - uses: actions/checkout@v4 From 793f94f6df4f460a3cb6b2575f7a10f9302a5d2e Mon Sep 17 00:00:00 2001 From: Huw Diprose Date: Wed, 30 Jul 2025 00:49:49 +0100 Subject: [PATCH 2/2] Add testing with Ruby 3.4 It's the latest and is getting updates until 2028 --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 25a62259..b3eb981a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - ruby: ['3.2', '3.3'] + ruby: ['3.2', '3.3', '3.4'] steps: - uses: actions/checkout@v4