From e4253ef6dbf5495660e171596ce82c9fe39b099b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Wed, 19 Aug 2026 11:38:13 +0200 Subject: [PATCH] bake/containerd: Align Go version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We currently ship containerd 2.3 releases as stable so let's track Go updates for its release branch. Signed-off-by: Paweł Gronowski --- docker-bake.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 49dd23f0..5979cea3 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -574,8 +574,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.12" # 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.5" # 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