From e85c5ab2187359be02436534ac6c5eace705d16a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 21:53:52 +0000 Subject: [PATCH] Bump JDK17 version to 17.0.13_11 (#1944) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: Bump default JDK17 version for Linux images in the Windows Doc... ... kerfile Made with ❤️️ by updatecli * chore: Bump JDK17 version for Linux images in the Rhel Dockerfile Made with ❤️️ by updatecli * chore: Bump JDK17 version for Linux images in the Debian Dockerfiles Made with ❤️️ by updatecli * chore: Bump JDK17 version for Linux images in the Alpine Linux Docker... ... file Made with ❤️️ by updatecli * chore: Bump JDK17 version in build-windows.yaml Made with ❤️️ by updatecli * chore: Bump JDK17 version for Linux images in the docker-bake.hcl file Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- alpine/hotspot/Dockerfile | 2 +- build-windows.yaml | 2 +- debian/bookworm-slim/hotspot/Dockerfile | 2 +- debian/bookworm/hotspot/Dockerfile | 2 +- docker-bake.hcl | 2 +- rhel/ubi9/hotspot/Dockerfile | 2 +- windows/windowsservercore/hotspot/Dockerfile | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/alpine/hotspot/Dockerfile b/alpine/hotspot/Dockerfile index 740a63fc1..3313e93a8 100644 --- a/alpine/hotspot/Dockerfile +++ b/alpine/hotspot/Dockerfile @@ -2,7 +2,7 @@ ARG ALPINE_TAG=3.20.3 FROM alpine:"${ALPINE_TAG}" AS jre-build -ARG JAVA_VERSION=17.0.12_7 +ARG JAVA_VERSION=17.0.13_11 SHELL ["/bin/ash", "-o", "pipefail", "-c"] diff --git a/build-windows.yaml b/build-windows.yaml index db5517b8c..67298e1a9 100644 --- a/build-windows.yaml +++ b/build-windows.yaml @@ -7,7 +7,7 @@ services: args: COMMIT_SHA: ${COMMIT_SHA} JAVA_HOME: "C:/openjdk-17" - JAVA_VERSION: 17.0.12_7 + JAVA_VERSION: 17.0.13_11 JENKINS_SHA: ${JENKINS_SHA} JENKINS_VERSION: ${JENKINS_VERSION} TOOLS_WINDOWS_VERSION: ${TOOLS_WINDOWS_VERSION} diff --git a/debian/bookworm-slim/hotspot/Dockerfile b/debian/bookworm-slim/hotspot/Dockerfile index e2962725c..8f5741030 100644 --- a/debian/bookworm-slim/hotspot/Dockerfile +++ b/debian/bookworm-slim/hotspot/Dockerfile @@ -2,7 +2,7 @@ ARG BOOKWORM_TAG=20241016 FROM debian:bookworm-"${BOOKWORM_TAG}"-slim as jre-build -ARG JAVA_VERSION=17.0.12_7 +ARG JAVA_VERSION=17.0.13_11 SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/debian/bookworm/hotspot/Dockerfile b/debian/bookworm/hotspot/Dockerfile index 9acf0f172..62c94e8ee 100644 --- a/debian/bookworm/hotspot/Dockerfile +++ b/debian/bookworm/hotspot/Dockerfile @@ -2,7 +2,7 @@ ARG BOOKWORM_TAG=20241016 FROM debian:bookworm-"${BOOKWORM_TAG}" as jre-build -ARG JAVA_VERSION=17.0.12_7 +ARG JAVA_VERSION=17.0.13_11 SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/docker-bake.hcl b/docker-bake.hcl index ac5e831eb..21c276fe7 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -83,7 +83,7 @@ variable "ALPINE_SHORT_TAG" { } variable "JAVA17_VERSION" { - default = "17.0.12_7" + default = "17.0.13_11" } variable "JAVA21_VERSION" { diff --git a/rhel/ubi9/hotspot/Dockerfile b/rhel/ubi9/hotspot/Dockerfile index bf3867222..1ea9c555b 100644 --- a/rhel/ubi9/hotspot/Dockerfile +++ b/rhel/ubi9/hotspot/Dockerfile @@ -1,6 +1,6 @@ FROM registry.access.redhat.com/ubi9/ubi:9.4-1214.1726694543 as jre-build -ARG JAVA_VERSION=17.0.12_7 +ARG JAVA_VERSION=17.0.13_11 SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/windows/windowsservercore/hotspot/Dockerfile b/windows/windowsservercore/hotspot/Dockerfile index ddb746af2..4d3a5f9a4 100644 --- a/windows/windowsservercore/hotspot/Dockerfile +++ b/windows/windowsservercore/hotspot/Dockerfile @@ -1,7 +1,7 @@ # escape=` # hadolint shell=powershell -ARG JAVA_VERSION=17.0.12_7 +ARG JAVA_VERSION=17.0.13_11 ARG WINDOWS_VERSION=ltsc2019 ARG TOOLS_WINDOWS_VERSION=1809 @@ -10,7 +10,7 @@ FROM mcr.microsoft.com/windows/servercore:"${WINDOWS_VERSION}" AS jre-build # $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] -ARG JAVA_VERSION=17.0.12_7 +ARG JAVA_VERSION=17.0.13_11 RUN New-Item -ItemType Directory -Path C:\temp | Out-Null ; ` $javaMajorVersion = $env:JAVA_VERSION.substring(0,2) ; `