From fdb50fc5ec647c030829546b13deffc2aa2f1ebb Mon Sep 17 00:00:00 2001 From: Chris Sinjakli Date: Sun, 26 Jul 2026 01:33:20 +0100 Subject: [PATCH] Update supported Ruby versions in build matrix I'm about to cut a major version to clear out a bunch of old Ruby versions (already removed in 169bd93761840e51511e728ffb742139a006920d) and since that removing them, Ruby 3.2 has also fallen out of support. Let's get rid of that and test against both JRuby 10.0 (Ruby 3.4 compatible) and JRuby 10.1 (Ruby 4.0 compatible) while we're at it. Signed-off-by: Chris Sinjakli --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9bfb308..a196f32a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,12 +23,12 @@ jobs: fail-fast: false matrix: ruby-version: - - "3.2" - "3.3" - "3.4" - "4.0" - "jruby-9.4" - - "jruby-10.0.2.0" + - "jruby-10.0" + - "jruby-10.1" steps: - name: Check out