From 0cf4fc9ed63f50ef4afd4cf755ff351a9de2f309 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Wed, 15 Apr 2026 11:03:59 +0200 Subject: [PATCH] containerd: Switch to 1.25.9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1.26 comes from the main branch but the last release (2.2.3) is still on Go 1.25. 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 1bd70e96..e68b5b40 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -517,8 +517,8 @@ target "_pkg-containerd" { args = { PKG_NAME = PKG_NAME != null && PKG_NAME != "" ? PKG_NAME : "containerd.io" PKG_REPO = PKG_REPO != null && PKG_REPO != "" ? PKG_REPO : "https://github.com/containerd/containerd.git" - PKG_REF = PKG_REF != null && PKG_REF != "" ? PKG_REF : "main" - GO_VERSION = GO_VERSION != null && GO_VERSION != "" ? GO_VERSION : "1.26.2" # https://github.com/containerd/containerd/blob/main/.github/workflows/release/Dockerfile + PKG_REF = PKG_REF != null && PKG_REF != "" ? PKG_REF : "release/2.2" + GO_VERSION = GO_VERSION != null && GO_VERSION != "" ? GO_VERSION : "1.25.9" # https://github.com/containerd/containerd/blob/release/2.2/.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