From 36ab3ad2af6cc62438a015f64c39248c89175bf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Fern=C3=A1ndez-Capel?= Date: Tue, 19 Dec 2023 13:04:27 +0000 Subject: [PATCH] Remove Ruby 2.7 from CI (#547) It was EOLed on 2023-03-31. Test Ruby 3.3 instead. --- .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 2b6f867f..55168746 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,10 +6,10 @@ jobs: fail-fast: false matrix: rails: [ "6.1", "7.0", "7.1" ] - ruby: [ "2.7", "3.0", "3.1", "3.2" ] + ruby: [ "3.0", "3.1", "3.2", "3.3" ] allow-fail: [ false ] include: - - { ruby: "2.7", rails: "main", allow-fail: true } + - { ruby: "3.3", rails: "main", allow-fail: true } - { ruby: "3.2", rails: "main", allow-fail: true } - { ruby: "head", rails: "main", allow-fail: true }