From 142e24eac80e9df99a1fe400178ec58a066c86cc Mon Sep 17 00:00:00 2001 From: Hartley McGuire Date: Fri, 16 Dec 2022 03:22:00 -0500 Subject: [PATCH] Fix truffleruby tests by upgrading truffleruby The current combination of truffleruby 21.3.0 and ubuntu 22.04 does not exist as a published truffleruby binary. This previously worked because ubuntu-latest was 20.04, which does have a release published for truffleruby 21.3.0 --- .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 a1ccf98..1aa4d84 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: name: build (${{ matrix.ruby }} / ${{ matrix.os }}) strategy: matrix: - ruby: [ 3.1, "3.0", 2.7, 2.6, 2.5, 2.4, 2.3, head, jruby-9.2, jruby-9.3, truffleruby-21.3.0 ] + ruby: [ 3.1, "3.0", 2.7, 2.6, 2.5, 2.4, 2.3, head, jruby-9.2, jruby-9.3, truffleruby-22.3.0 ] os: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.os }} steps: