From 070e5d8ea5f2d3ba47dd66fb7e703c20ecc43eda Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 02:24:13 +0000 Subject: [PATCH 1/3] chore: Bump JDK17 default ARG version on Debian Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- debian/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/Dockerfile b/debian/Dockerfile index 07e055293..1aa9a7aa4 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -31,7 +31,7 @@ ARG TARGETPLATFORM COPY adoptium-get-jdk-link.sh /usr/bin/local/adoptium-get-jdk-link.sh COPY adoptium-install-jdk.sh /usr/bin/local/adoptium-install-jdk.sh -ARG JAVA_VERSION=17.0.13_11 +ARG JAVA_VERSION=17.0.14_7 # hadolint ignore=DL3008 RUN set -x; apt-get update \ && apt-get install --no-install-recommends -y \ From 33f9992922f6f1c28fffc599ab3bc42b67b9b390 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 02:24:14 +0000 Subject: [PATCH 2/3] chore: Bump JDK17 version for Linux images in the docker-bake.hcl file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- docker-bake.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 6aa622573..dd70e69de 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -75,7 +75,7 @@ variable "default_jdk" { } variable "JAVA17_VERSION" { - default = "17.0.13_11" + default = "17.0.14_7" } variable "JAVA21_VERSION" { From 0242f93f0910ec28d56b282c1105c7724f3fefb5 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 02:24:15 +0000 Subject: [PATCH 3/3] chore: Bump JDK17 default ARG version on Alpine Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- alpine/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index e890c5798..816f04985 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -31,7 +31,7 @@ ARG TARGETPLATFORM COPY adoptium-get-jdk-link.sh /usr/bin/local/adoptium-get-jdk-link.sh COPY adoptium-install-jdk.sh /usr/bin/local/adoptium-install-jdk.sh -ARG JAVA_VERSION=17.0.13_11 +ARG JAVA_VERSION=17.0.14_7 # hadolint ignore=DL3018 RUN apk add --no-cache \ ca-certificates \