From 71266a8e80876453efe819c61666b80abfcb28d9 Mon Sep 17 00:00:00 2001 From: Prem Sichanugrist Date: Sun, 15 Oct 2023 11:42:22 +0900 Subject: [PATCH] Update build matrix - Ruby 2.7 is EOL - Ruby 3.2 is now the latest version - Ruby 3.3 preview for compatibility - Rails 7.1 is now the latest version https://www.ruby-lang.org/en/downloads/branches/ https://guides.rubyonrails.org/maintenance_policy.html --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 95bec30..22d5929 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,12 +8,14 @@ jobs: fail-fast: false matrix: ruby: - - 2.7 - 3.0 - 3.1 + - 3.2 + - 3.3 rails: - 6.1.0 - 7.0.0 + - 7.1.0 env: RAILS_VERSION: "~> ${{ matrix.rails }}" runs-on: ubuntu-latest