From 67434accd37846391b8f0d7177de91bb454c8d50 Mon Sep 17 00:00:00 2001 From: Evangelos Bouzinis Date: Mon, 6 Jul 2026 18:10:16 +0100 Subject: [PATCH] Bump default containerd reference to release/2.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The default PKG_REF still tracked release/2.2 (v2.2.5) while upstream containerd has shipped v2.3.0–v2.3.2. Move the default to the release/2.3 branch and align GO_VERSION with the Go version pinned in containerd's release Dockerfile on that branch (1.26.4). Signed-off-by: Evangelos Bouzinis --- docker-bake.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 698ccd3a..3c658b06 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -588,8 +588,8 @@ target "_pkg-containerd" { args = { PKG_NAME = PKG_NAME != null && PKG_NAME != "" ? PKG_NAME : "containerd" PKG_REPO = PKG_REPO != null && PKG_REPO != "" ? PKG_REPO : "https://github.com/containerd/containerd.git" - PKG_REF = PKG_REF != null && PKG_REF != "" ? PKG_REF : "release/2.2" - GO_VERSION = GO_VERSION != null && GO_VERSION != "" ? GO_VERSION : "1.25.11" # https://github.com/containerd/containerd/blob/release/2.2/.github/workflows/release/Dockerfile + PKG_REF = PKG_REF != null && PKG_REF != "" ? PKG_REF : "release/2.3" + GO_VERSION = GO_VERSION != null && GO_VERSION != "" ? GO_VERSION : "1.26.4" # https://github.com/containerd/containerd/blob/release/2.3/.github/workflows/release/Dockerfile GO_IMAGE_VARIANT = GO_IMAGE_VARIANT != null && GO_IMAGE_VARIANT != "" ? GO_IMAGE_VARIANT : "bookworm" PKG_DEB_EPOCH = PKG_DEB_EPOCH != null && PKG_DEB_EPOCH != "" ? PKG_DEB_EPOCH : "" RUNC_REF = RUNC_REF != null && RUNC_REF != "" ? RUNC_REF : null