Skip to content

Commit f77066d

Browse files
build(deps): Bump github.com/docker/docker from 26.1.5+incompatible to 27.4.1+incompatible (runfinch#127)
* build(deps): Bump github.com/docker/docker Bumps [github.com/docker/docker](https://github.com/docker/docker) from 26.1.5+incompatible to 27.4.1+incompatible. --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Arjun Raja Yogidas <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent da0dab7 commit f77066d

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

api/handlers/container/stats_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"time"
1212

1313
"github.com/containerd/nerdctl/pkg/config"
14-
dockertypes "github.com/docker/docker/api/types"
14+
dockertypes "github.com/docker/docker/api/types/container"
1515
"github.com/golang/mock/gomock"
1616
"github.com/gorilla/mux"
1717
. "github.com/onsi/ginkgo/v2"

api/types/container_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"time"
1010

1111
"github.com/containerd/nerdctl/pkg/inspecttypes/dockercompat"
12-
dockertypes "github.com/docker/docker/api/types"
12+
dockertypes "github.com/docker/docker/api/types/container"
1313
"github.com/docker/go-connections/nat"
1414
"github.com/docker/go-units"
1515
)

e2e/tests/container_stats.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"net/http"
1111
"time"
1212

13-
dockertypes "github.com/docker/docker/api/types"
13+
dockertypes "github.com/docker/docker/api/types/container"
1414
. "github.com/onsi/ginkgo/v2"
1515
. "github.com/onsi/gomega"
1616
"github.com/runfinch/common-tests/command"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/coreos/go-systemd/v22 v22.5.0
2020
github.com/distribution/reference v0.6.0
2121
github.com/docker/cli v26.0.0+incompatible
22-
github.com/docker/docker v26.1.5+incompatible
22+
github.com/docker/docker v27.4.1+incompatible
2323
github.com/docker/go-connections v0.5.0
2424
github.com/getlantern/httptest v0.0.0-20161025015934-4b40f4c7e590
2525
github.com/gofrs/flock v0.12.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ github.com/djherbis/times v1.6.0 h1:w2ctJ92J8fBvWPxugmXIv7Nz7Q3iDMKNx9v5ocVH20c=
9090
github.com/djherbis/times v1.6.0/go.mod h1:gOHeRAz2h+VJNZ5Gmc/o7iD9k4wW7NMVqieYCY99oc0=
9191
github.com/docker/cli v26.0.0+incompatible h1:90BKrx1a1HKYpSnnBFR6AgDq/FqkHxwlUyzJVPxD30I=
9292
github.com/docker/cli v26.0.0+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
93-
github.com/docker/docker v26.1.5+incompatible h1:NEAxTwEjxV6VbBMBoGG3zPqbiJosIApZjxlbrG9q3/g=
94-
github.com/docker/docker v26.1.5+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
93+
github.com/docker/docker v27.4.1+incompatible h1:ZJvcY7gfwHn1JF48PfbyXg7Jyt9ZCWDW+GGXOIxEwp4=
94+
github.com/docker/docker v27.4.1+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
9595
github.com/docker/docker-credential-helpers v0.8.1 h1:j/eKUktUltBtMzKqmfLB0PAgqYyMHOp5vfsD1807oKo=
9696
github.com/docker/docker-credential-helpers v0.8.1/go.mod h1:P3ci7E3lwkZg6XiHdRKft1KckHiO9a2rNtyFbZ/ry9M=
9797
github.com/docker/go-connections v0.5.0 h1:USnMq7hx7gwdVZq1L49hLXaFtUdTADjXGp+uj1Br63c=

internal/service/container/stats.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
cerrdefs "github.com/containerd/errdefs"
1515
"github.com/containerd/nerdctl/pkg/labels"
1616
"github.com/containerd/typeurl/v2"
17-
dockertypes "github.com/docker/docker/api/types"
17+
dockertypes "github.com/docker/docker/api/types/container"
1818

1919
"github.com/runfinch/finch-daemon/api/types"
2020
)

internal/service/container/stats_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/containerd/nerdctl/pkg/inspecttypes/native"
1818
"github.com/containerd/nerdctl/pkg/labels"
1919
"github.com/containerd/typeurl/v2"
20-
dockertypes "github.com/docker/docker/api/types"
20+
dockertypes "github.com/docker/docker/api/types/container"
2121
"github.com/golang/mock/gomock"
2222
. "github.com/onsi/ginkgo/v2"
2323
. "github.com/onsi/gomega"

pkg/statsutil/statsutil.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"strings"
1313

1414
"github.com/containerd/nerdctl/pkg/inspecttypes/native"
15-
dockertypes "github.com/docker/docker/api/types"
15+
dockertypes "github.com/docker/docker/api/types/container"
1616
"github.com/vishvananda/netlink"
1717
"github.com/vishvananda/netns"
1818
"golang.org/x/sys/unix"

0 commit comments

Comments
 (0)