From 7b0a1cfc082d623877d0505c487934e6d9a60d7b Mon Sep 17 00:00:00 2001 From: Orien Madgwick <497874+orien@users.noreply.github.com> Date: Sun, 18 Feb 2024 10:45:45 +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 c947579..4a802bb 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: