From 22bd993a754626768210a63c04cdb07ef9b796fd Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Wed, 19 Oct 2022 19:27:19 -0400 Subject: [PATCH] update to JDK 19 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 350d32a..e9b8f62 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,11 +10,11 @@ jobs: - uses: actions/checkout@v3 with: submodules: true - - name: Set up JDK 18 + - name: Set up JDK 19 uses: actions/setup-java@v3 with: distribution: 'temurin' - java-version: 18 + java-version: 19 cache: gradle - name: Build with Gradle run: ./gradlew build --no-daemon