From d30c4da150657c42215e8f7f40f07172f1c53421 Mon Sep 17 00:00:00 2001 From: Kevin Kohrt Date: Wed, 24 Jan 2024 05:51:11 -0600 Subject: [PATCH 1/2] Advance "latest" ruby in isolated ci test job to 3.3 --- .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 73742269a..5bc05a840 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [ 2.3, 3.2 ] # oldest and latest CRuby + ruby: [ 2.3, 3.3 ] # oldest and latest CRuby env: RUBYOPT: '-w' steps: From 6b7d07ad8486eae736f9b90a1aba39c43bc033d7 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Wed, 24 Jan 2024 13:31:01 +0100 Subject: [PATCH 2/2] Use 'ruby' for dynamic latest CRuby release --- .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 5bc05a840..b6152f01d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [ 2.3, 3.3 ] # oldest and latest CRuby + ruby: [ 2.3, ruby ] # oldest and latest CRuby env: RUBYOPT: '-w' steps: