From c26aa9b3b7d82b1af888aff6230e8444d3deb06c Mon Sep 17 00:00:00 2001 From: jmasar Date: Fri, 24 Nov 2023 10:36:28 +0100 Subject: [PATCH] Add setup-java JDK 17 Signed-off-by: jmasar --- .github/workflows/verify.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index eda7b37bd0..c2caa0d930 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -17,6 +17,12 @@ jobs: fetch-depth: 0 submodules: recursive + name: Set up JDK 17 + - uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '17' + - name: Build and test run: ./gradlew build -Dhttp.socketTimeout=60000 -Dhttp.connectionTimeout=60000 @@ -43,6 +49,12 @@ jobs: fetch-depth: 0 submodules: recursive + name: Set up JDK 17 + - uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: '17' + - name: Build conductor run: ./gradlew build -x test