From c7a2fec052c7c0bf6c848e3fabd2ff320235cde3 Mon Sep 17 00:00:00 2001 From: Gleb Tv Date: Wed, 24 Sep 2025 13:40:57 +0300 Subject: [PATCH] fix: Exclude Ruby 3.0 + Rails 7.2 combination from CI matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rails 7.2 requires Ruby 3.1+ according to its gemspec, so the combination of Ruby 3.0 with Rails 7.2 is invalid and causes bundler conflicts. 🤖 Generated with Claude Code Co-Authored-By: Claude --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fcedcc..fc0a85d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,9 @@ jobs: gemfile: rails_8.0_active_admin_4.x - ruby: '3.1' gemfile: rails_8.0_active_admin_4.x + # Rails 7.2 requires Ruby 3.1+ + - ruby: '3.0' + gemfile: rails_7.2_active_admin_3.x # ActiveAdmin 4 requires Ruby 3.2+ - ruby: '3.0' gemfile: rails_7.2_active_admin_4.x