From cc8ec143a7241cd99a52cf6ca2416745053e10c2 Mon Sep 17 00:00:00 2001 From: Fabio Insolia Date: Wed, 11 Oct 2023 16:26:18 +0100 Subject: [PATCH] Fixing JDK 17 for unit tests --- .github/workflows/verify-pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/verify-pr.yml b/.github/workflows/verify-pr.yml index f7049133..9c7c0159 100644 --- a/.github/workflows/verify-pr.yml +++ b/.github/workflows/verify-pr.yml @@ -50,11 +50,11 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v3 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v3 with: - java-version: 11 - distribution: corretto + java-version: '17' + distribution: 'temurin' cache: gradle - name: Grant execute permission for gradlew run: chmod +x gradlew