Skip to content

Commit 619cfae

Browse files
chore(deps): bump github.com/docker/docker from 23.0.6+incompatible to 24.0.2+incompatible (#3150)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nathanael DEMACON <ndemacon@scaleway.com>
1 parent b6281d2 commit 619cfae

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ github.com/docker/cli v23.0.5+incompatible h1:ufWmAOuD3Vmr7JP2G5K3cyuNC4YZWiAsuD
208208
github.com/docker/cli v23.0.5+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
209209
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
210210
github.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=
213213
github.com/docker/docker-credential-helpers v0.7.0 h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A=
214214
github.com/docker/docker-credential-helpers v0.7.0/go.mod h1:rETQfLdHNT3foU5kuNkFR1R1V12OJRRO5lzt2D1b5X0=
215215
github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=

internal/namespaces/container/v1beta1/custom_deploy.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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 {
338339
func 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,

0 commit comments

Comments
 (0)