From 7bf79149119f5b685d55ebfe12ee96f6e909749c Mon Sep 17 00:00:00 2001 From: Joe Haines Date: Fri, 31 May 2024 11:27:08 +0100 Subject: [PATCH] Re-allow 3.3.x in MR tests Ruby 3.3.2 has released and fixed the issue requiring us to pin to 3.3.0 --- .github/workflows/maze-runner.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maze-runner.yml b/.github/workflows/maze-runner.yml index 0c31db33..e2e27582 100644 --- a/.github/workflows/maze-runner.yml +++ b/.github/workflows/maze-runner.yml @@ -127,7 +127,7 @@ jobs: strategy: fail-fast: false matrix: - ruby-version: ['2.7', '3.3.0'] # TODO: change back to '3.3' after https://github.com/ruby/ruby/pull/10619 is released + ruby-version: ['2.7', '3.3'] rails-version: ['6', '7', '_integrations'] include: - ruby-version: '2.5' @@ -135,7 +135,7 @@ jobs: exclude: - ruby-version: '2.7' rails-version: '6' - - ruby-version: '3.3.0' # TODO: change back to '3.3' after https://github.com/ruby/ruby/pull/10619 is released + - ruby-version: '3.3' rails-version: '_integrations' uses: ./.github/workflows/run-maze-runner.yml