From 7d4e25672d6cf0925c09db1ec4fd07b0f42ef98c Mon Sep 17 00:00:00 2001 From: Shinsuke Sugaya Date: Thu, 25 Jun 2026 13:48:42 +0900 Subject: [PATCH 1/2] chore: bump parent version to 15.7.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 152a711..81e1626 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ org.codelibs.fess fess-parent - 15.7.0-SNAPSHOT + 15.7.0 From c6d885a30c2b2c0ae8882ee5b4ce40a7b5acde0b Mon Sep 17 00:00:00 2001 From: Shinsuke Sugaya Date: Thu, 25 Jun 2026 14:20:21 +0900 Subject: [PATCH 2/2] fix(ci): use JDK 21 in CodeQL workflow for parent 15.7.0 The fess-parent 15.7.0 compiler release is set to 21, but the CodeQL autobuild used JDK 17 and failed with 'release version 21 not supported'. Align the CodeQL setup-java version with the Maven CI workflow. --- .github/workflows/codeql-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5fa6752..84f1146 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -60,10 +60,10 @@ jobs: key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - - name: Set up JDK 17 + - name: Set up JDK 21 uses: actions/setup-java@v4 with: - java-version: '17' + java-version: '21' distribution: 'temurin' - name: Checkout fess-parent uses: actions/checkout@v4