From 8e31494ec3d92d2da6c2fa0e93625e8a652ecdab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Jul 2026 16:02:14 +0000 Subject: [PATCH 1/2] Bump org.gaul:modernizer-maven-plugin from 3.4.0 to 3.5.0 Bumps [org.gaul:modernizer-maven-plugin](https://github.com/gaul/modernizer-maven-plugin) from 3.4.0 to 3.5.0. - [Release notes](https://github.com/gaul/modernizer-maven-plugin/releases) - [Commits](https://github.com/gaul/modernizer-maven-plugin/compare/modernizer-maven-plugin-3.4.0...modernizer-maven-plugin-3.5.0) --- updated-dependencies: - dependency-name: org.gaul:modernizer-maven-plugin dependency-version: 3.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b3a8be9..a6d6aff 100644 --- a/pom.xml +++ b/pom.xml @@ -219,7 +219,7 @@ org.gaul modernizer-maven-plugin - 3.4.0 + 3.5.0 de.thetaphi From 66a5092417ac214b418ba67115521fc1c10bfec0 Mon Sep 17 00:00:00 2001 From: Philippe Charles Date: Wed, 29 Jul 2026 09:17:59 +0200 Subject: [PATCH 2/2] Fix modernizer issues --- src/test/java/internal/console/picocli/csv/ExcelCsvTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/internal/console/picocli/csv/ExcelCsvTest.java b/src/test/java/internal/console/picocli/csv/ExcelCsvTest.java index 88ee3ef..4b6c63c 100644 --- a/src/test/java/internal/console/picocli/csv/ExcelCsvTest.java +++ b/src/test/java/internal/console/picocli/csv/ExcelCsvTest.java @@ -81,7 +81,7 @@ private static boolean isExcelInstalled() throws IOException, PowerShellExecutio } private static File createSource(ExcelCsv excel) throws IOException { - File result = File.createTempFile("source", ".csv"); + File result = Files.createTempFile("source", ".csv").toFile(); result.deleteOnExit(); String A1 = "Some text"; @@ -110,7 +110,7 @@ private static File createSource(ExcelCsv excel) throws IOException { } private static File createTarget(File source) throws IOException, PowerShellExecutionException { - File result = File.createTempFile("target", ".csv"); + File result = Files.createTempFile("target", ".csv").toFile(); result.deleteOnExit(); try (PowerShell ps = PowerShell.open()) {