Skip to content

Commit

Permalink
Bump JDK17 version to 17.0.13_11 (#1944)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
github-actions[bot] authored Oct 25, 2024
1 parent 0c22d20 commit e85c5ab
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion alpine/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion debian/bookworm-slim/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion debian/bookworm/hotspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ variable "ALPINE_SHORT_TAG" {
}

variable "JAVA17_VERSION" {
default = "17.0.12_7"
default = "17.0.13_11"
}

variable "JAVA21_VERSION" {
Expand Down
2 changes: 1 addition & 1 deletion rhel/ubi9/hotspot/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

Expand Down
4 changes: 2 additions & 2 deletions windows/windowsservercore/hotspot/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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) ; `
Expand Down

0 comments on commit e85c5ab

Please sign in to comment.