From dca2496615bbed5dd4d1f1c52f3f162fe1640cf3 Mon Sep 17 00:00:00 2001 From: Oskar Pearson Date: Tue, 28 Jan 2025 17:34:50 +0000 Subject: [PATCH] Drop support for Ruby 3.0 and add later versions to the test matrix - Remove Ruby 3.0 from the supported list since it is officially end-of-life - Add latest versions of Ruby 3.1 onwards to the test matrix --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ad79fa1..5c120e5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,8 +11,8 @@ jobs: strategy: matrix: - ruby-version: [ "3.0.3", "3.1.1" ] - + ruby-version: [ "3.1.6", "3.2.6", "3.3.7", "3.4.1" ] + steps: - uses: actions/checkout@v2