From bfa61baee26e2c7067f537c14ba3dab789da7d40 Mon Sep 17 00:00:00 2001 From: Morgan Brown Date: Wed, 8 May 2024 11:27:08 +0200 Subject: [PATCH] Update ruby compat matrix --- .github/workflows/ruby.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 2a04d3d..75f9360 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -76,6 +76,13 @@ jobs: rails-version: '7.1' - ruby-version: '2.6' rails-version: '7.1' + # Because rails >= 4.0.0.beta1, < 5.0.5.rc1 depends on bundler >= 1.3.0, < 2.0 + # and the current Bundler version (2.5.9) does not satisfy bundler >= 1.3.0, < 2.0, + # rails >= 4.0.0.beta1, < 5.0.5.rc1 cannot be used. + # So, because Gemfile depends on rails ~> 4.2.0, + # version solving has failed. + - ruby-version: '3.3' + rails-version: '4.2' steps: - uses: actions/checkout@v4