From 4997abcb439968acdc9bb380ff125e8c79d847da Mon Sep 17 00:00:00 2001 From: Lin Yang Date: Fri, 19 Jun 2026 11:30:07 -0700 Subject: [PATCH] Remove Ruby 3.2 from CI matrix Ruby 3.2 reached end-of-life on 2025-03-31. Drop it from the build matrix so CI only tests supported versions (3.3, 3.4, 4.0). Co-Authored-By: Claude Opus 4.8 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e6af16b..8d54661 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: ['3.2', '3.3', '3.4', '4.0'] + ruby-version: ['3.3', '3.4', '4.0'] steps: - uses: actions/checkout@v7