From b5ae084125fde52e377fd47ed601cc6bc5a4f0a1 Mon Sep 17 00:00:00 2001 From: Shinsuke Sugaya Date: Thu, 25 Jun 2026 13:48:46 +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 a4d1618..e289eea 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ org.codelibs.fess fess-parent - 15.7.0-SNAPSHOT + 15.7.0 From f07db223d89b52c3ee5905eff4542c26d6a25824 Mon Sep 17 00:00:00 2001 From: Shinsuke Sugaya Date: Thu, 25 Jun 2026 14:21:18 +0900 Subject: [PATCH 2/2] fix: use JDK 21 in CodeQL workflow to match parent 15.7.0 release target --- .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 1a2d91e..ebace6d 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