aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorLiam Miller-Cushon <cushon@google.com>2021-05-13 16:03:05 -0700
committerJavac Team <javac-team+copybara@google.com>2021-05-13 16:03:40 -0700
commit20f90c82c22c7f66a51615d4969e154ae625e159 (patch)
treef013d68f27906cd86c7f74ea8da14042fafa3f52 /.github/workflows/ci.yml
parent3bbf96736b45e2450d41b4ee1ca355402ef3f46d (diff)
downloadturbine-20f90c82c22c7f66a51615d4969e154ae625e159.tar.gz
Update turbine CI JDK versions
PiperOrigin-RevId: 373677082
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 039e662..a345f9f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -29,19 +29,19 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
- java: [ 15, 11, 8 ]
+ java: [ 16, 11, 8 ]
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: 15
+ java: 16
experimental: false
- os: windows-latest
- java: 15
+ java: 16
experimental: false
- os: ubuntu-latest
- java: 16-ea
+ java: 17-ea
experimental: true
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}