From f3a2bf8ea5bf9687cb7a42ad25db01dfb96cb84e Mon Sep 17 00:00:00 2001 From: Liam Miller-Cushon Date: Thu, 21 Sep 2023 08:44:12 -0700 Subject: [PATCH] Update ci.yml for JDK 21 release --- .github/workflows/ci.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d4b094dc61..0d1c55b93f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,24 +22,21 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - java: [ 20, 17, 11 ] + java: [ 21, 17, 11 ] experimental: [ false ] # Only test on macos and windows with a single recent JDK to avoid a # combinatorial explosion of test configurations. # Most OS-specific issues are not specific to a particular JDK version. include: - os: macos-latest - java: 20 + java: 21 experimental: false - os: windows-latest - java: 20 + java: 21 experimental: false - os: ubuntu-latest - java: 20 + java: 21 experimental: false - - os: ubuntu-latest - java: 21-ea - experimental: true - os: ubuntu-latest java: 22-ea experimental: true