Skip to content

Commit 6c7bdea

Browse files
chore(deps): bump github.com/docker/docker from 26.1.3+incompatible to 27.0.0+incompatible (#2626)
* chore(deps): bump github.com/docker/docker Bumps [github.com/docker/docker](https://github.com/docker/docker) from 26.1.3+incompatible to 27.0.0+incompatible. - [Release notes](https://github.com/docker/docker/releases) - [Commits](https://github.com/docker/docker/commits) --- updated-dependencies: - dependency-name: github.com/docker/docker dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Fix * Fix --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rémy Léone <[email protected]>
1 parent db1568f commit 6c7bdea

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/aws/aws-sdk-go v1.54.6
99
github.com/bflad/tfproviderdocs v0.12.1
1010
github.com/bflad/tfproviderlint v0.30.0
11-
github.com/docker/docker v26.1.3+incompatible
11+
github.com/docker/docker v27.0.0+incompatible
1212
github.com/dustin/go-humanize v1.0.1
1313
github.com/google/go-cmp v0.6.0
1414
github.com/hashicorp/aws-sdk-go-base v1.1.0

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ github.com/distribution/reference v0.5.0 h1:/FUIFXtfc/x2gpa5/VGfiGLuOIdYa1t65IKK
5353
github.com/distribution/reference v0.5.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E=
5454
github.com/dnaeon/go-vcr v1.2.0 h1:zHCHvJYTMh1N7xnV7zf1m1GPBF9Ad0Jk/whtQ1663qI=
5555
github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ=
56-
github.com/docker/docker v26.1.3+incompatible h1:lLCzRbrVZrljpVNobJu1J2FHk8V0s4BawoZippkc+xo=
57-
github.com/docker/docker v26.1.3+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
56+
github.com/docker/docker v27.0.0+incompatible h1:JRugTYuelmWlW0M3jakcIadDx2HUoUO6+Tf2C5jVfwA=
57+
github.com/docker/docker v27.0.0+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
5858
github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=
5959
github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec=
6060
github.com/docker/go-units v0.4.0 h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=

internal/services/container/testfuncs/checks.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"fmt"
1010
"io"
1111

12-
"github.com/docker/docker/api/types"
12+
"github.com/docker/docker/api/types/image"
1313
dockerRegistrySDK "github.com/docker/docker/api/types/registry"
1414
"github.com/docker/docker/client"
1515
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
@@ -70,7 +70,7 @@ func TestConfigContainerNamespace(tt *acctest.TestTools, n string) resource.Test
7070
ctx := context.Background()
7171
authStr := base64.URLEncoding.EncodeToString(encodedJSON)
7272

73-
out, err := cli.ImagePull(ctx, testDockerIMG, types.ImagePullOptions{})
73+
out, err := cli.ImagePull(ctx, testDockerIMG, image.PullOptions{})
7474
if err != nil {
7575
return fmt.Errorf("could not pull image: %v", err)
7676
}
@@ -101,7 +101,7 @@ func TestConfigContainerNamespace(tt *acctest.TestTools, n string) resource.Test
101101
return fmt.Errorf("could not tag image: %v", err)
102102
}
103103

104-
pusher, err := cli.ImagePush(ctx, scwTag, types.ImagePushOptions{RegistryAuth: authStr})
104+
pusher, err := cli.ImagePush(ctx, scwTag, image.PushOptions{RegistryAuth: authStr})
105105
if err != nil {
106106
return fmt.Errorf("could not push image: %v", err)
107107
}

0 commit comments

Comments
 (0)