From b3e2fb5767c47faf4ba685b6857f0618a0f8b648 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jan 2025 12:36:52 +0000 Subject: [PATCH 1/2] chore: Update the default value of the variable DEBIAN_RELEASE in the... MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... docker-bake.hcl Made with ❤️️ by updatecli --- docker-bake.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 288948442..6aa622573 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -119,7 +119,7 @@ variable "ALPINE_SHORT_TAG" { } variable "DEBIAN_RELEASE" { - default = "bookworm-20241223" + default = "bookworm-20250113" } variable "UBI9_TAG" { From 1340327b5b1a1688b7d537bda1d96f61a451c979 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jan 2025 12:36:53 +0000 Subject: [PATCH 2/2] chore: Update the value of the base image (ARG DEBIAN_RELEASE) in the... MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... Dockerfile Made with ❤️️ by updatecli --- debian/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/Dockerfile b/debian/Dockerfile index 8e5d1b25f..07e055293 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-20241223 +ARG DEBIAN_RELEASE=bookworm-20250113 FROM debian:"${DEBIAN_RELEASE}"-slim as jre-build SHELL ["/bin/bash", "-e", "-u", "-o", "pipefail", "-c"]