aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-11-22 19:16:47 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-11-22 19:21:42 +0100
commita8ffe38e6e5401011352cda5bc92a0a7a88ef40e (patch)
tree97f14cfb809f365aebfdbfaed43c8733aec930e6 /.github/workflows/build.yml
parentfix(frontend): mobx 6.7.0 typing (diff)
downloadrefinery-a8ffe38e6e5401011352cda5bc92a0a7a88ef40e.tar.gz
refinery-a8ffe38e6e5401011352cda5bc92a0a7a88ef40e.tar.zst
refinery-a8ffe38e6e5401011352cda5bc92a0a7a88ef40e.zip
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.
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml7
1 files changed, 4 insertions, 3 deletions
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:
21 uses: actions/checkout@v2 21 uses: actions/checkout@v2
22 with: 22 with:
23 fetch-depth: ${{ !steps.check-secret.outputs.is_SONAR_TOKEN_set && 1 || 0 }} # Shallow clones should be disabled for a better relevancy of SonarCloud analysis 23 fetch-depth: ${{ !steps.check-secret.outputs.is_SONAR_TOKEN_set && 1 || 0 }} # Shallow clones should be disabled for a better relevancy of SonarCloud analysis
24 - name: Set up JDK 17 24 - name: Set up JDK 19
25 uses: actions/setup-java@v1 25 uses: actions/setup-java@v2
26 with: 26 with:
27 java-version: 17 27 java-version: 19
28 distribution: temurin
28 - name: Cache Gradle packages 29 - name: Cache Gradle packages
29 uses: actions/cache@v2 30 uses: actions/cache@v2
30 with: 31 with: