From a13b70ba20ab9384f783e24fb255b39ce13b1e10 Mon Sep 17 00:00:00 2001 From: Liam Miller-Cushon Date: Sun, 6 Aug 2023 09:32:50 -0700 Subject: [PATCH] Update ci.yml Unpin JDK 11, latest STS is 20, add 22-ea --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bcdf496..7855a584 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,22 +29,22 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - java: [ 19, 17, 11.0.16 ] + java: [ 20, 17, 11 ] experimental: [ false ] include: # Only test on macos and windows with a single recent JDK to avoid a # combinatorial explosion of test configurations. - os: macos-latest - java: 19 + java: 20 experimental: false - os: windows-latest - java: 19 + java: 20 experimental: false - os: ubuntu-latest - java: 20-ea + java: 21-ea experimental: true - os: ubuntu-latest - java: 21-ea + java: 22-ea experimental: true runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.experimental }}