From 3ffaeb41900c50aa130240794b2d3e1622da0d70 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 16:55:59 +0000 Subject: [PATCH] Bump Debian Bookworm Linux version to bookworm-20241016 (#896) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: Update the default value of the variable DEBIAN_RELEASE in the... ... docker-bake.hcl Made with ❤️️ by updatecli * chore: Update the value of the base image (ARG DEBIAN_RELEASE) in the... ... Dockerfile Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- debian/Dockerfile | 2 +- docker-bake.hcl | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/Dockerfile b/debian/Dockerfile index e6253158d..da97c0081 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -19,7 +19,7 @@ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -ARG DEBIAN_RELEASE=bookworm-20240926 +ARG DEBIAN_RELEASE=bookworm-20241016 FROM debian:"${DEBIAN_RELEASE}"-slim as jre-build SHELL ["/bin/bash", "-e", "-u", "-o", "pipefail", "-c"] diff --git a/docker-bake.hcl b/docker-bake.hcl index 8e711877c..29db872e9 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -119,7 +119,7 @@ variable "ALPINE_SHORT_TAG" { } variable "DEBIAN_RELEASE" { - default = "bookworm-20240926" + default = "bookworm-20241016" } variable "UBI9_TAG" { @@ -153,7 +153,7 @@ function "is_default_jdk" { function "javaversion" { params = [jdk] result = (equal(17, jdk) - ? "${JAVA17_VERSION}" + ? "${JAVA17_VERSION}" : "${JAVA21_VERSION}") } @@ -170,7 +170,7 @@ function "alpine_platforms" { function "debian_platforms" { params = [jdk] result = (equal(17, jdk) - ? ["linux/amd64", "linux/arm64", "linux/ppc64le", "linux/arm/v7"] + ? ["linux/amd64", "linux/arm64", "linux/ppc64le", "linux/arm/v7"] : ["linux/amd64", "linux/arm64", "linux/ppc64le", "linux/s390x"]) }