From a581dff14fa8536a3c43579fa102ced1fb0921f4 Mon Sep 17 00:00:00 2001 From: madogiwa0124 Date: Sat, 24 Jan 2026 22:53:22 +0900 Subject: [PATCH] Updated the version of Ruby being run on CI to the latest state. I added the released Ruby v3.4 and v4.0 to the version of Ruby being run on CI. Also, the Ruby v3.1 have been removed as their EOL. > Ruby 3.1 > status: eol > release date: 2021-12-25 > normal maintenance until: 2024-04-01 > EOL: 2025-03-26 > > https://www.ruby-lang.org/en/downloads/branches/ --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54f7c58..84b99c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: ["3.1", "3.2", "3.3"] + ruby: ["3.2", "3.3", "3.4", "4.0"] steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1