From 0eb12a1d824204f5d1e4e00fd09149cf6debf783 Mon Sep 17 00:00:00 2001 From: Liam Miller-Cushon Date: Tue, 28 Sep 2021 10:15:52 -0700 Subject: [PATCH] Update to non-EA JDK 17 builds and add JDK 8 to the matrix. PiperOrigin-RevId: 399469056 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0386892e9..7d3dbc75e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,19 +29,19 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - java: [ 16, 14, 11 ] + java: [ 17, 14, 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: 16 + java: 17 experimental: false - os: windows-latest - java: 16 + java: 17 experimental: false - os: ubuntu-latest - java: 17-ea + java: 18-ea experimental: true runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.experimental }}