diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2023-04-16 04:19:39 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2023-04-16 04:23:00 -0600 |
| commit | 95837f545c0bd3a7ea8a80d192a03f6fb65e1713 (patch) | |
| tree | 18f8e7cfad81c21363c356ff6d41cda153c01ca3 /.github | |
| parent | faf5a9b7c81ec240d0e13b212b61743be4243925 (diff) | |
upgrade JRuby in CI workflow
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c657382f..a8570f4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - ruby: [jruby-9.3.8.0, '2.5', '2.7', '3.0', '3.2'] + ruby: [jruby-9.4.2.0, '2.5', '2.7', '3.0', '3.2'] asciimath-version: [~] haml-version: [~] pygments-version: ['~> 2.0'] @@ -86,6 +86,12 @@ jobs: run: | echo 'BUNDLE_WITHOUT=docs' >> $GITHUB_ENV echo 'COVERAGE=true' >> $GITHUB_ENV + - name: Upgrade Java (JRuby for Windows) + if: matrix.os == 'windows-latest' + uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: '17' - name: Install Ruby (uses cached dependencies for non-scheduled build) uses: ruby/setup-ruby@v1 with: |
