Skip to content

Commit 4e9cc89

Browse files
Bump JDK17 version to 17.0.15+6 (#2014)
* chore: Bump JDK17 version in build-windows.yaml 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 Alpine Linux Docker... ... file Made with ❤️️ by updatecli * chore: Bump JDK17 version for Linux images in the Debian Dockerfiles Made with ❤️️ by updatecli * 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 docker-bake.hcl file Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ee86f72 commit 4e9cc89

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

alpine/hotspot/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG ALPINE_TAG=3.21.3
22

33
FROM alpine:"${ALPINE_TAG}" AS jre-build
44

5-
ARG JAVA_VERSION=17.0.14_7
5+
ARG JAVA_VERSION=17.0.15_6
66

77
SHELL ["/bin/ash", "-o", "pipefail", "-c"]
88

build-windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
args:
88
COMMIT_SHA: ${COMMIT_SHA}
99
JAVA_HOME: "C:/openjdk-17"
10-
JAVA_VERSION: 17.0.14_7
10+
JAVA_VERSION: 17.0.15_6
1111
JENKINS_SHA: ${JENKINS_SHA}
1212
JENKINS_VERSION: ${JENKINS_VERSION}
1313
TOOLS_WINDOWS_VERSION: ${TOOLS_WINDOWS_VERSION}

debian/bookworm-slim/hotspot/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG BOOKWORM_TAG=20250407
22

33
FROM debian:bookworm-"${BOOKWORM_TAG}"-slim AS jre-build
44

5-
ARG JAVA_VERSION=17.0.14_7
5+
ARG JAVA_VERSION=17.0.15_6
66

77
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
88

debian/bookworm/hotspot/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG BOOKWORM_TAG=20250407
22

33
FROM debian:bookworm-"${BOOKWORM_TAG}" AS jre-build
44

5-
ARG JAVA_VERSION=17.0.14_7
5+
ARG JAVA_VERSION=17.0.15_6
66

77
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
88

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ variable "ALPINE_SHORT_TAG" {
8383
}
8484

8585
variable "JAVA17_VERSION" {
86-
default = "17.0.14_7"
86+
default = "17.0.15_6"
8787
}
8888

8989
variable "JAVA21_VERSION" {

rhel/ubi9/hotspot/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM registry.access.redhat.com/ubi9/ubi:9.5-1744101466 AS jre-build
22

3-
ARG JAVA_VERSION=17.0.14_7
3+
ARG JAVA_VERSION=17.0.15_6
44

55
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
66

windows/windowsservercore/hotspot/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# escape=`
22
# hadolint shell=powershell
33

4-
ARG JAVA_VERSION=17.0.14_7
4+
ARG JAVA_VERSION=17.0.15_6
55
ARG WINDOWS_VERSION=ltsc2019
66
ARG TOOLS_WINDOWS_VERSION=1809
77

@@ -10,7 +10,7 @@ FROM mcr.microsoft.com/windows/servercore:"${WINDOWS_VERSION}" AS jre-build
1010
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
1111
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
1212

13-
ARG JAVA_VERSION=17.0.14_7
13+
ARG JAVA_VERSION=17.0.15_6
1414

1515
RUN New-Item -ItemType Directory -Path C:\temp | Out-Null ; `
1616
$javaMajorVersion = $env:JAVA_VERSION.substring(0,2) ; `

0 commit comments

Comments
 (0)