From c5e03095df5be6d80dae7b59e06e2cbf7d6d2b5a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 13:20:32 -0600 Subject: [PATCH] Bump JDK17 version to 17.0.11_9 (#1855) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: Bump JDK17 version in build-windows.yaml Made with ❤️️ by updatecli * chore: Bump default JDK17 version for Linux images in the Windows Doc... ... kerfile Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-windows.yaml | 2 +- windows/windowsservercore/hotspot/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-windows.yaml b/build-windows.yaml index 146a9807c7..574df17206 100644 --- a/build-windows.yaml +++ b/build-windows.yaml @@ -22,7 +22,7 @@ services: args: COMMIT_SHA: ${COMMIT_SHA} JAVA_HOME: "C:/openjdk-17" - JAVA_VERSION: "17.0.10_7" + JAVA_VERSION: 17.0.11_9 JENKINS_SHA: ${JENKINS_SHA} JENKINS_VERSION: ${JENKINS_VERSION} TOOLS_WINDOWS_VERSION: ${TOOLS_WINDOWS_VERSION} diff --git a/windows/windowsservercore/hotspot/Dockerfile b/windows/windowsservercore/hotspot/Dockerfile index b9c6b15c3f..a570ce5a04 100644 --- a/windows/windowsservercore/hotspot/Dockerfile +++ b/windows/windowsservercore/hotspot/Dockerfile @@ -1,7 +1,7 @@ # escape=` # hadolint shell=powershell -ARG JAVA_VERSION=17.0.10_7 +ARG JAVA_VERSION=17.0.11_9 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 +ARG JAVA_VERSION=17.0.11_9 RUN New-Item -ItemType Directory -Path C:\temp | Out-Null ; ` $javaMajorVersion = $env:JAVA_VERSION.substring(0,2) ; `