From 1c2894c69e77d784769194b17762779c80002c5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9da=20Housni=20Alaoui?= Date: Thu, 5 Mar 2026 09:55:26 +0100 Subject: [PATCH] Downgrade CI JDK to version 21 --- .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 da38ef8..2164276 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 25 + - name: Set up JDK 21 uses: actions/setup-java@v2 with: - java-version: '25' + java-version: '21' distribution: 'temurin' - name: Build with Maven run: ./mvnw --batch-mode clean verify