From d7aa478fa909d4ba6e132fc4d3272421fb5f30cf Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 9 Jan 2026 11:43:32 +0100 Subject: [PATCH] credentials-helper: update master -> main branch Signed-off-by: Sebastiaan van Stijn --- docker-bake.hcl | 4 ++-- pkg/credential-helpers/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 5d7a86e1..76baa676 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -558,8 +558,8 @@ target "_pkg-credential-helpers" { args = { PKG_NAME = PKG_NAME != null && PKG_NAME != "" ? PKG_NAME : "docker-credential-helpers" PKG_REPO = PKG_REPO != null && PKG_REPO != "" ? PKG_REPO : "https://github.com/docker/docker-credential-helpers.git" - PKG_REF = PKG_REF != null && PKG_REF != "" ? PKG_REF : "master" - GO_VERSION = GO_VERSION != null && GO_VERSION != "" ? GO_VERSION : "1.25.5" # https://github.com/docker/docker-credential-helpers/blob/master/Dockerfile + 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/docker-credential-helpers/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/credential-helpers/Dockerfile b/pkg/credential-helpers/Dockerfile index 7119a58d..b2850752 100644 --- a/pkg/credential-helpers/Dockerfile +++ b/pkg/credential-helpers/Dockerfile @@ -27,7 +27,7 @@ ARG DISTRO_IMAGE="debian:bookworm" ARG PKG_NAME="docker-credential-helpers" ARG PKG_REPO="https://github.com/docker/docker-credential-helpers.git" -ARG PKG_REF="master" +ARG PKG_REF="main" ARG GO_IMAGE="golang" ARG GO_VERSION="1.25.5"