From 4c3ff90a2ade889ad76fb46284c433d9bb4a7bb0 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 14:05:28 +0000 Subject: [PATCH 1/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 651cae74..75520646 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -69,7 +69,7 @@ variable "JAVA11_VERSION" { } variable "JAVA17_VERSION" { - default = "17.0.11_9" + default = "17.0.12_7" } variable "JAVA21_VERSION" { From d8c6e848a41dc082b5554b11865cc653edf4738c Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 14:05:29 +0000 Subject: [PATCH 2/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 b07c7bbe..19a44954 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -31,7 +31,7 @@ ARG TARGETPLATFORM COPY jdk-download-url.sh /usr/bin/local/jdk-download-url.sh COPY jdk-download.sh /usr/bin/local/jdk-download.sh -ARG JAVA_VERSION=17.0.11_9 +ARG JAVA_VERSION=17.0.12_7 # hadolint ignore=DL3008 RUN set -x; apt-get update \ && apt-get install --no-install-recommends -y \ From 2e0161f9291fe6faf73553b0b53c80451a90e0a3 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 14:05:31 +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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 064ee286..963095e5 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -ARG JAVA_VERSION=17.0.11_9 +ARG JAVA_VERSION=17.0.12_7 ARG ALPINE_TAG=3.20.2 FROM alpine:"${ALPINE_TAG}" AS jre-build @@ -33,7 +33,7 @@ ARG TARGETPLATFORM COPY jdk-download-url.sh /usr/bin/local/jdk-download-url.sh COPY jdk-download.sh /usr/bin/local/jdk-download.sh -ARG JAVA_VERSION=17.0.11_9 +ARG JAVA_VERSION=17.0.12_7 # hadolint ignore=DL3018 RUN apk add --no-cache \ ca-certificates \