Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/credential-helpers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down