From 39a68dbf3e0f86fd128284fe3a943c0a504b1f8b Mon Sep 17 00:00:00 2001 From: Hannes Kaeufler Date: Fri, 30 Dec 2022 22:02:50 +0100 Subject: [PATCH 1/2] Add ruby 3.2 to test matrix It was released on december 25th. Issue #431 shows that there might be an issue with 3.2, and I'm seeing the same. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 70708e2e2..efcd95151 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ] - ruby: [ 3.1, '3.0', 2.7, 2.6, 2.5, 2.4, 2.3, 2.2, jruby, jruby-head, truffleruby, ruby-head ] + ruby: [ 3.2, 3.1, '3.0', 2.7, 2.6, 2.5, 2.4, 2.3, 2.2, jruby, jruby-head, truffleruby, ruby-head ] exclude: - os: windows-latest ruby: truffleruby From bb8c1084ac57479b0a76a4cb3b5bb9d1942dc6ca Mon Sep 17 00:00:00 2001 From: Hannes Kaeufler Date: Fri, 30 Dec 2022 22:11:00 +0100 Subject: [PATCH 2/2] Bump setup ruby action to get windows ruby 3.2 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index efcd95151..fc1f0d46a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: ruby: jruby steps: - uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0 - - uses: ruby/setup-ruby@03b78bdda287ae04217ee12e4b64996630a03542 # v1.131.0 + - uses: ruby/setup-ruby@09c10210cc6e998d842ce8433cd9d245933cd797 # v1.133.0 with: ruby-version: ${{ matrix.ruby }} - name: Install dependencies