From 4dbf71e41e9081822e2df648cbda7c109a51dc9c Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Jul 2025 17:10:36 +0000 Subject: [PATCH] chore: [maven-agent] Bump maven version in dockerfiles/maven/Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- dockerfiles/maven/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 3ade0f3b..f9d076d8 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install maven -ARG MAVEN_VERSION=3.9.10 +ARG MAVEN_VERSION=3.9.11 # Set SHELL flags for RUN commands to allow -e and pipefail # Rationale:https://github.com/hadolint/hadolint/wiki/DL4006