From efa35a50ed002b02b7b8249b9a648964571032d9 Mon Sep 17 00:00:00 2001 From: Orien Madgwick <497874+orien@users.noreply.github.com> Date: Wed, 21 Feb 2024 15:56:12 +1100 Subject: [PATCH] CI: add Ruby 3.3 to the test matrix --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7304ec0..82dcbd2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,9 +7,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2' ] + ruby: [ '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 ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: