From d9f04a734b497d2cbb699c429ca1fb4758d98956 Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Sun, 7 Jan 2024 18:35:36 +0100 Subject: [PATCH] feat(CI): Add Ruby 3.2/3.3 to the test matrix (#402) Merge pull request 402 --- .github/workflows/ruby.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 3a8a1d19..7156f41b 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: ['2.6', '2.7', '3.0', '3.1'] + ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: