diff --git a/docker-bake.hcl b/docker-bake.hcl index 95a102b2..fbe56f64 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -607,7 +607,7 @@ target "_pkg-cagent" { PKG_NAME = PKG_NAME != null && PKG_NAME != "" ? PKG_NAME : "cagent" PKG_REPO = PKG_REPO != null && PKG_REPO != "" ? PKG_REPO : "https://github.com/docker/cagent.git" PKG_REF = PKG_REF != null && PKG_REF != "" ? PKG_REF : "main" - GO_VERSION = GO_VERSION != null && GO_VERSION != "" ? GO_VERSION : "1.25.5" # https://github.com/docker/cagent/blob/main/Dockerfile + GO_VERSION = GO_VERSION != null && GO_VERSION != "" ? GO_VERSION : "1.26.0" # https://github.com/docker/cagent/blob/main/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 : "" PKG_REMOTE_DOCKERFILE = "Dockerfile" diff --git a/pkg/cagent/Dockerfile b/pkg/cagent/Dockerfile index 99c821de..9348579b 100644 --- a/pkg/cagent/Dockerfile +++ b/pkg/cagent/Dockerfile @@ -28,7 +28,7 @@ ARG PKG_REPO="https://github.com/docker/cagent.git" ARG PKG_REF="master" ARG GO_IMAGE="golang" -ARG GO_VERSION="1.25.5" +ARG GO_VERSION="1.26.0" ARG GO_IMAGE_VARIANT="bookworm" ARG ZIG_VERSION="0.15.2"