From bbf28b5a22944d2a07a81e3ca294621bd26df6c0 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Mar 2025 15:46:39 +0000 Subject: [PATCH 1/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 0cc719aab..f5d7c543d 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-20250203 +ARG DEBIAN_RELEASE=bookworm-20250224 FROM debian:"${DEBIAN_RELEASE}"-slim as jre-build SHELL ["/bin/bash", "-e", "-u", "-o", "pipefail", "-c"] From bc82f83bb3d39028bfc782bba93e5dd9051021d5 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Mar 2025 15:46:40 +0000 Subject: [PATCH 2/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 | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 25b694769..3c4ff58d1 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -101,7 +101,7 @@ variable "ALPINE_SHORT_TAG" { } variable "DEBIAN_RELEASE" { - default = "bookworm-20250203" + default = "bookworm-20250224" } variable "UBI9_TAG" { @@ -199,7 +199,7 @@ function distribution_prefix { params = [distribution] result = (equal("debian", distribution) ? "" - : "${distribution}-") + : "${distribution}-") } # Return a dash followed by the distribution if it is not the default distribution @@ -207,7 +207,7 @@ function distribution_suffix { params = [distribution] result = (equal("debian", distribution) ? "" - : "-${distribution}") + : "-${distribution}") } # Return the official name of the default distribution @@ -215,7 +215,7 @@ function distribution_name { params = [distribution] result = (equal("debian", distribution) ? "bookworm" - : distribution) + : distribution) } # Return the tag suffixed by "-preview" if the jdk passed as parameter is in the jdks_in_preview list @@ -223,7 +223,7 @@ function preview_tag { params = [jdk] result = (contains(jdks_in_preview, jdk) ? "${jdk}-preview" - : jdk) + : jdk) } # Return an array of tags depending on the agent type, the jdk and the Linux distribution passed as parameters @@ -279,7 +279,7 @@ target "alpine" { VERSION = REMOTING_VERSION JAVA_VERSION = "${javaversion(jdk)}" } - tags = concat(linux_tags(type, jdk, "alpine"), linux_tags(type, jdk, "alpine${ALPINE_SHORT_TAG}")) + tags = concat(linux_tags(type, jdk, "alpine"), linux_tags(type, jdk, "alpine${ALPINE_SHORT_TAG}")) platforms = alpine_platforms(jdk) } @@ -297,7 +297,7 @@ target "debian" { DEBIAN_RELEASE = DEBIAN_RELEASE JAVA_VERSION = "${javaversion(jdk)}" } - tags = linux_tags(type, jdk, "debian") + tags = linux_tags(type, jdk, "debian") platforms = debian_platforms(jdk) } @@ -315,7 +315,7 @@ target "rhel_ubi9" { VERSION = REMOTING_VERSION JAVA_VERSION = "${javaversion(jdk)}" } - tags = linux_tags(type, jdk, "rhel-ubi9") + tags = linux_tags(type, jdk, "rhel-ubi9") platforms = rhel_ubi9_platforms(jdk) } @@ -335,8 +335,8 @@ target "nanoserver" { VERSION = REMOTING_VERSION WINDOWS_VERSION_TAG = windows_version } - target = type - tags = windows_tags(type, jdk, "nanoserver-${windows_version}") + target = type + tags = windows_tags(type, jdk, "nanoserver-${windows_version}") platforms = ["windows/amd64"] } @@ -356,7 +356,7 @@ target "windowsservercore" { VERSION = REMOTING_VERSION WINDOWS_VERSION_TAG = windows_version } - target = type - tags = windows_tags(type, jdk, "windowsservercore-${windows_version}") + target = type + tags = windows_tags(type, jdk, "windowsservercore-${windows_version}") platforms = ["windows/amd64"] }