From 2d54186b0c87da6fcb4e4ee86d34bfca3d19592d Mon Sep 17 00:00:00 2001 From: Ludy87 Date: Fri, 24 Oct 2025 21:02:06 +0200 Subject: [PATCH] Update SonarQube workflow to use JDK 17 and Gradle 8.14 Added a step to set up JDK 17 using the temurin distribution and updated the Gradle setup to use version 8.14 in the SonarQube GitHub Actions workflow. --- .github/workflows/sonarqube.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml index 146eb4b39..da55a348d 100644 --- a/.github/workflows/sonarqube.yml +++ b/.github/workflows/sonarqube.yml @@ -38,8 +38,16 @@ jobs: with: fetch-depth: 0 + - name: Set up JDK 17 + uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0 + with: + java-version: "17" + distribution: "temurin" + - name: Setup Gradle uses: gradle/actions/setup-gradle@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0 + with: + gradle-version: 8.14 - name: Build and analyze with Gradle env: