From a8ffe38e6e5401011352cda5bc92a0a7a88ef40e Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Tue, 22 Nov 2022 19:16:47 +0100 Subject: chore: upgrade to Java 19 Use Java 19 and Jetty 12 to take advantage of Project Loom preview features to reduce CPU usage due to XtextWebDocumentAccess thread pools. --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 80d6b4f3..62f74f13 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,10 +21,11 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: ${{ !steps.check-secret.outputs.is_SONAR_TOKEN_set && 1 || 0 }} # Shallow clones should be disabled for a better relevancy of SonarCloud analysis - - name: Set up JDK 17 - uses: actions/setup-java@v1 + - name: Set up JDK 19 + uses: actions/setup-java@v2 with: - java-version: 17 + java-version: 19 + distribution: temurin - name: Cache Gradle packages uses: actions/cache@v2 with: -- cgit v1.2.3-54-g00ecf