From ecf6d388b1254bf380c26e402519aee4ee30755f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 23 Jan 2026 04:14:36 +0000 Subject: [PATCH 1/2] Bump com.diffplug.spotless:spotless-maven-plugin from 2.46.1 to 3.2.0 Bumps [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) from 2.46.1 to 3.2.0. - [Release notes](https://github.com/diffplug/spotless/releases) - [Changelog](https://github.com/diffplug/spotless/blob/main/CHANGES.md) - [Commits](https://github.com/diffplug/spotless/compare/maven/2.46.1...lib/3.2.0) --- updated-dependencies: - dependency-name: com.diffplug.spotless:spotless-maven-plugin dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6293fc3b..0f2c348c 100644 --- a/pom.xml +++ b/pom.xml @@ -218,7 +218,7 @@ com.diffplug.spotless spotless-maven-plugin - 2.46.1 + 3.2.0 From 0153c0f49b9f7af42a38aa3301e8851a9f56a134 Mon Sep 17 00:00:00 2001 From: Dave Wichers Date: Fri, 23 Jan 2026 15:16:32 +0000 Subject: [PATCH 2/2] Upgrade workflow to Java 17 so Spotless can run properly in CI. --- .github/workflows/maven.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml index 280d26f7..b664988d 100644 --- a/.github/workflows/maven.yaml +++ b/.github/workflows/maven.yaml @@ -11,12 +11,12 @@ jobs: - uses: actions/checkout@v6 with: fetch-depth: 0 - - name: Set up JDK 11 + - name: Set up JDK 17 uses: actions/setup-java@v5 with: - java-version: '11' - distribution: 'adopt' + java-version: '17' + distribution: 'zulu' cache: maven - - name: Build, test, and Install shared library + - name: Build, test, and install shared library run: mvn install