Skip to content

Commit effeead

Browse files
authored
Merge pull request #1027 from jenkinsci/updatecli_master_04b8a347a72ce9b63c57d30f47d1466887f35fcae7350f100cc85d0dd91226ab
Bump JDK17 version to 17.0.16_8
2 parents 566a950 + 401d7bd commit effeead

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ $ make show
146146
"dockerfile": "alpine/Dockerfile",
147147
"args": {
148148
"ALPINE_TAG": "3.22.1",
149-
"JAVA_VERSION": "17.0.15_6",
149+
"JAVA_VERSION": "17.0.16_8",
150150
"VERSION": "3327.v868139a_d00e0"
151151
},
152152
"tags": [
@@ -184,7 +184,7 @@ $ ON_TAG=true BUILD_NUMBER=3 make show
184184
"dockerfile": "alpine/Dockerfile",
185185
"args": {
186186
"ALPINE_TAG": "3.22.1",
187-
"JAVA_VERSION": "17.0.15_6",
187+
"JAVA_VERSION": "17.0.16_8",
188188
"VERSION": "3327.v868139a_d00e0"
189189
},
190190
"tags": [

alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ARG TARGETPLATFORM
3131
COPY adoptium-get-jdk-link.sh /usr/bin/local/adoptium-get-jdk-link.sh
3232
COPY adoptium-install-jdk.sh /usr/bin/local/adoptium-install-jdk.sh
3333

34-
ARG JAVA_VERSION=17.0.15_6
34+
ARG JAVA_VERSION=17.0.16_8
3535
# hadolint ignore=DL3018
3636
RUN apk add --no-cache \
3737
ca-certificates \

debian/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ARG TARGETPLATFORM
3131
COPY adoptium-get-jdk-link.sh /usr/bin/local/adoptium-get-jdk-link.sh
3232
COPY adoptium-install-jdk.sh /usr/bin/local/adoptium-install-jdk.sh
3333

34-
ARG JAVA_VERSION=17.0.15_6
34+
ARG JAVA_VERSION=17.0.16_8
3535
# hadolint ignore=DL3008
3636
RUN set -x; apt-get update \
3737
&& apt-get install --no-install-recommends -y \

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ variable "jdks_in_preview" {
5757
}
5858

5959
variable "JAVA17_VERSION" {
60-
default = "17.0.15_6"
60+
default = "17.0.16_8"
6161
}
6262

6363
variable "JAVA21_VERSION" {

rhel/ubi9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ARG TARGETPLATFORM
99
COPY adoptium-get-jdk-link.sh /usr/bin/local/adoptium-get-jdk-link.sh
1010
COPY adoptium-install-jdk.sh /usr/bin/local/adoptium-install-jdk.sh
1111

12-
ARG JAVA_VERSION=17.0.15_6
12+
ARG JAVA_VERSION=17.0.16_8
1313

1414
RUN dnf install --disableplugin=subscription-manager --setopt=install_weak_deps=0 --setopt=tsflags=nodocs --allowerasing -y \
1515
ca-certificates \

windows/nanoserver/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ FROM mcr.microsoft.com/windows/servercore:"${WINDOWS_VERSION_TAG}" AS jdk-core
2929
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
3030
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
3131

32-
ARG JAVA_VERSION=17.0.15+6
32+
ARG JAVA_VERSION=17.0.16+8
3333
RUN New-Item -ItemType Directory -Path C:\temp | Out-Null ; `
3434
$javaMajorVersion = $env:JAVA_VERSION.substring(0,2) ; `
3535
$msiUrl = 'https://api.adoptium.net/v3/installer/version/jdk-{0}/windows/x64/jdk/hotspot/normal/eclipse?project=jdk' -f $env:JAVA_VERSION ; `

windows/windowsservercore/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ FROM mcr.microsoft.com/windows/servercore:"${WINDOWS_VERSION_TAG}" AS jdk-core
2929
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
3030
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
3131

32-
ARG JAVA_VERSION=17.0.15+6
32+
ARG JAVA_VERSION=17.0.16+8
3333
RUN New-Item -ItemType Directory -Path C:\temp | Out-Null ; `
3434
$javaMajorVersion = $env:JAVA_VERSION.substring(0,2) ; `
3535
$msiUrl = 'https://api.adoptium.net/v3/installer/version/jdk-{0}/windows/x64/jdk/hotspot/normal/eclipse?project=jdk' -f $env:JAVA_VERSION ; `

0 commit comments

Comments
 (0)