File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
internal/namespaces/container/v1beta1 Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ require (
1212 github.com/chzyer/readline v1.5.1
1313 github.com/containerd/console v1.0.3
1414 github.com/dnaeon/go-vcr v1.2.0
15- github.com/docker/docker v23 .0.6 +incompatible
15+ github.com/docker/docker v24 .0.2 +incompatible
1616 github.com/dustin/go-humanize v1.0.1
1717 github.com/fatih/color v1.15.0
1818 github.com/getsentry/raven-go v0.2.0
Original file line number Diff line number Diff line change @@ -208,8 +208,8 @@ github.com/docker/cli v23.0.5+incompatible h1:ufWmAOuD3Vmr7JP2G5K3cyuNC4YZWiAsuD
208208github.com/docker/cli v23.0.5+incompatible /go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8 =
209209github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8 =
210210github.com/docker/distribution v2.8.2+incompatible /go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w =
211- github.com/docker/docker v23 .0.6 +incompatible h1:aBD4np894vatVX99UTx/GyOUOK4uEcROwA3+bQhEcoU =
212- github.com/docker/docker v23 .0.6 +incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk =
211+ github.com/docker/docker v24 .0.2 +incompatible h1:eATx+oLz9WdNVkQrr0qjQ8HvRJ4bOOxfzEo8R+dA3cg =
212+ github.com/docker/docker v24 .0.2 +incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk =
213213github.com/docker/docker-credential-helpers v0.7.0 h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A =
214214github.com/docker/docker-credential-helpers v0.7.0 /go.mod h1:rETQfLdHNT3foU5kuNkFR1R1V12OJRRO5lzt2D1b5X0 =
215215github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ =
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import (
1717 pack "github.com/buildpacks/pack/pkg/client"
1818 "github.com/buildpacks/pack/pkg/logging"
1919 dockertypes "github.com/docker/docker/api/types"
20+ dockerregistry "github.com/docker/docker/api/types/registry"
2021 docker "github.com/docker/docker/client"
2122 "github.com/docker/docker/pkg/archive"
2223 "github.com/docker/docker/pkg/jsonmessage"
@@ -338,7 +339,7 @@ type DeployStepPushImageResponse struct {
338339func DeployStepPushImage (t * tasks.Task , data * DeployStepBuildImageResponse ) (* DeployStepPushImageResponse , error ) {
339340 accessKey , _ := data .Client .GetAccessKey ()
340341 secretKey , _ := data .Client .GetSecretKey ()
341- authConfig := dockertypes .AuthConfig {
342+ authConfig := dockerregistry .AuthConfig {
342343 ServerAddress : data .Namespace .RegistryEndpoint ,
343344 Username : accessKey ,
344345 Password : secretKey ,
You can’t perform that action at this time.
0 commit comments