From f832db4bd51f072fd8436c11f07588cb55366e87 Mon Sep 17 00:00:00 2001 From: Ross Brandes Date: Fri, 20 Sep 2024 23:40:01 -0400 Subject: [PATCH] Bump min Ruby version to 3.1 Rails 7.2 isn't compatible with Ruby 3.0, and 3.0 was made EOL several months ago. --- .github/workflows/main.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 52bd7bb..c780407 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,12 +8,8 @@ jobs: strategy: matrix: - ruby-version: ['3.0', '3.3'] + ruby-version: ['3.1', '3.3'] gemfile: ['Gemfile', 'Gemfile.rails71'] - exclude: - # Rails 7.2 requires Ruby 3.1+ - - ruby-version: '3.0' - gemfile: 'Gemfile' steps: - uses: actions/checkout@v4