From 5fb489176d4d03cb8f9b05667c0da18932967913 Mon Sep 17 00:00:00 2001 From: Greg Watts Date: Tue, 17 Sep 2024 12:45:28 -0500 Subject: [PATCH] Update Java 23 specific test with GA version --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e0e9c18..dd24b72 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -13,7 +13,7 @@ jobs: build: strategy: matrix: - java-version: [ '17', '18', '19', '20', '21', '22', '23-ea' ] + java-version: [ '17', '18', '19', '20', '21', '22', '23' ] runs-on: ubuntu-latest @@ -36,14 +36,14 @@ jobs: uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 with: java-version: ${{ matrix.java-version }} - distribution: 'temurin' + distribution: 'oracle' # This is the JDK gradle will use since gradle does not always support the -ea version - name: Set up JDK 17 uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 with: java-version: '17' - distribution: 'temurin' + distribution: 'oracle' cache: gradle - name: Toolchain debug