From ad8c928cf12b169c2b4125711d5cbfb64c42aa7d Mon Sep 17 00:00:00 2001 From: Athou Date: Tue, 16 Sep 2025 19:09:40 +0200 Subject: [PATCH] run CI with java 25 --- .github/workflows/ci.yml | 2 +- .github/workflows/sonar.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed5a5c63..88306ff4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: pull_request: env: - JAVA_VERSION: 21 + JAVA_VERSION: 25 DOCKER_BUILD_SUMMARY: false jobs: diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index bf745019..da3c6070 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -11,7 +11,7 @@ on: types: [ opened, synchronize, reopened ] env: - JAVA_VERSION: 21 + JAVA_VERSION: 25 jobs: build: @@ -24,11 +24,11 @@ jobs: fetch-depth: 0 # Setup - - name: Set up JDK - uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5 + - name: Set up GraalVM + uses: graalvm/setup-graalvm@aba6a077d71fbfc02138d7470c4ad6e7f85bd2a9 # v1 with: java-version: ${{ env.JAVA_VERSION }} - distribution: "temurin" + distribution: "graalvm" cache: "maven" - name: Install Playwright dependencies