From 0d4227561a355b2e9c90992536e1f7c5df463254 Mon Sep 17 00:00:00 2001 From: Laurent Delatte Date: Sat, 28 Feb 2026 18:10:03 +0100 Subject: [PATCH] Upgrade CI to jdk 25 Signed-off-by: Laurent Delatte --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9ac1e7..da38ef8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,10 +14,10 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - uses: actions/checkout@v2 - - name: Set up JDK 17 + - name: Set up JDK 25 uses: actions/setup-java@v2 with: - java-version: '17' + java-version: '25' distribution: 'temurin' - name: Build with Maven run: ./mvnw --batch-mode clean verify