diff --git a/.circleci/config.yml b/.circleci/config.yml index 82031be..bead463 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -93,7 +93,7 @@ jobs: ./goreleaser -v - run: name: Execute goreleaser - command: ../goreleaser --snapshot --skip-publish --debug + command: CGO_ENABLED=${CGO_ENABLED:-0} ../goreleaser --snapshot --skip-publish --debug publishing: executor: go steps: diff --git a/container/client.go b/container/client.go index 47e4776..62bce6c 100644 --- a/container/client.go +++ b/container/client.go @@ -187,8 +187,8 @@ func (client dockerClient) IsContainerStale(c Container) (bool, error) { var opts types.ImagePullOptions // ImagePullOptions can take a RegistryAuth arg to authenticate against a private registry auth, err := EncodedAuth(imageName) - log.Infof("Got auth value: %s", auth) - log.Infof("Got image name: %s", imageName) + log.Debugf("Got auth value: %s", auth) + log.Debugf("Got image name: %s", imageName) if err != nil { log.Debugf("Error loading authentication credentials %s", err) return false, err