From b3bf5c9af9cf44e3e0fd29dd890f6a1e7a90810c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 02:45:01 +0000 Subject: [PATCH] Bump Debian Bookworm Linux version to bookworm-20241016 (#460) 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 | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/Dockerfile b/debian/Dockerfile index b0b1c60c..b3bf1acf 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 c3513bd4..bbae5a09 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -72,7 +72,7 @@ variable "JAVA21_VERSION" { } variable "DEBIAN_RELEASE" { - default = "bookworm-20240926" + default = "bookworm-20241016" } # Set this value to a specific Windows version to override Windows versions to build returned by windowsversions function @@ -91,7 +91,7 @@ function "is_default_jdk" { function "javaversion" { params = [jdk] result = (equal(17, jdk) - ? "${JAVA17_VERSION}" + ? "${JAVA17_VERSION}" : "${JAVA21_VERSION}") }