From b5ddbbe2ff15f2e41266bb2c8b049e8fc39f5e05 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Fri, 30 Jun 2023 14:57:39 +0200 Subject: [PATCH] CI: Use latest actions/checkout, add Ruby 3.2 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17356b7..e2d29c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,13 +12,13 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, jruby, truffleruby] + ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, jruby, truffleruby] exclude: - { os: windows-latest, ruby: truffleruby } env: JRUBY_OPTS: '--debug' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }}