From 4ad5c6ce2f9c9b85bc5295c2e954be2a55cf5136 Mon Sep 17 00:00:00 2001 From: Michael Hashizume Date: Fri, 25 Oct 2024 11:01:55 -0700 Subject: [PATCH] Add JRuby 9.4.8.0 integration tests Facter currently runs integration tests against JRuby 9.3.14.0, which is the version of Ruby that puppetserver 7 uses. However, puppetserver 8 runs on JRuby 9.4.8.0 and Facter does not run integration tests against that version. This commit adds integration tests on JRuby 9.4.8.0. --- .github/workflows/integration_tests.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 7982b53652..29bcfecc7b 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -21,6 +21,7 @@ jobs: - {os: ubuntu-latest, ruby: '2.7'} - {os: ubuntu-22.04, ruby: '3.2'} # with openssl 3 - {os: ubuntu-22.04, ruby: 'jruby-9.3.14.0'} + - {os: ubuntu-latest, ruby: 'jruby-9.4.8.0'} - {os: windows-2019, ruby: '2.7'} - {os: windows-2019, ruby: '3.2'} # with openssl 3 runs-on: ${{ matrix.cfg.os }}