From 4912f3dbf698fadce8793f8dcafeea69e4bebf2b Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Thu, 14 May 2026 18:48:03 +0200 Subject: [PATCH] Update to latest Ruby releases in CI --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38661b6fa..a0d596999 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,15 +12,15 @@ jobs: fail-fast: false matrix: os: [ ubuntu, macos, windows ] - ruby: [ 3.3.10, 3.4.8, 4.0.1 ] + ruby: [ 3.3.11, 3.4.9, 4.0.4 ] mspecopt: [""] rubyopt: [""] locale: [""] include: - - { os: ubuntu, ruby: 4.0.1, locale: "LC_ALL=C" } - - { os: ubuntu, ruby: 4.0.1, mspecopt: "--repeat 2" } - - { os: ubuntu, ruby: 4.0.1, rubyopt: "--enable-frozen-string-literal" } - - { os: ubuntu, ruby: 4.0.1, rubyopt: "--parser=parse.y" } + - { os: ubuntu, ruby: 4.0.4, locale: "LC_ALL=C" } + - { os: ubuntu, ruby: 4.0.4, mspecopt: "--repeat 2" } + - { os: ubuntu, ruby: 4.0.4, rubyopt: "--enable-frozen-string-literal" } + - { os: ubuntu, ruby: 4.0.4, rubyopt: "--parser=parse.y" } runs-on: ${{ matrix.os }}-latest steps: