Skip to content

Commit ee166af

Browse files
github-actions[bot]lemeurherve
authored andcommitted
Bump JDK17 version to 17.0.18+8 (jenkinsci#2247)
* chore: Bump JDK17 version in Dockerfiles 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 67b335f commit ee166af

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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.23.3
22

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

5-
ARG JAVA_VERSION=17.0.17_10
5+
ARG JAVA_VERSION=17.0.18_8
66

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

debian/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG DEBIAN_VERSION=20251117
55
ARG DEBIAN_VARIANT="-slim"
66
FROM debian:"${DEBIAN_RELEASE_LINE}-${DEBIAN_VERSION}${DEBIAN_VARIANT}" AS jre-and-war
77

8-
ARG JAVA_VERSION=17.0.17_10
8+
ARG JAVA_VERSION=17.0.18_8
99

1010
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
1111

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ variable "ALPINE_SHORT_TAG" {
5252
}
5353

5454
variable "JAVA17_VERSION" {
55-
default = "17.0.17_10"
55+
default = "17.0.18_8"
5656
}
5757

5858
variable "JAVA21_VERSION" {

rhel/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG RHEL_TAG=9.7-1769417801
22
ARG RHEL_RELEASE_LINE=ubi9
33
FROM registry.access.redhat.com/${RHEL_RELEASE_LINE}/ubi:${RHEL_TAG} AS jre-and-war
44

5-
ARG JAVA_VERSION=17.0.17_10
5+
ARG JAVA_VERSION=17.0.18_8
66

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

windows/windowsservercore/hotspot/Dockerfile

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

4-
ARG JAVA_VERSION=17.0.17_10
4+
ARG JAVA_VERSION=17.0.18_8
55
ARG WINDOWS_VERSION=ltsc2019
66

77
FROM mcr.microsoft.com/windows/servercore:"${WINDOWS_VERSION}" AS jre-and-war
88

99
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
1010
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
1111

12-
ARG JAVA_VERSION=17.0.17_10
12+
ARG JAVA_VERSION=17.0.18_8
1313

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

0 commit comments

Comments
 (0)