Skip to content

Commit

Permalink
fix: Dependabot alerts #24, #25, #26
Browse files Browse the repository at this point in the history
  • Loading branch information
LeKovr committed Apr 17, 2023
1 parent 894f693 commit f48e166
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module github.com/LeKovr/mqbridge

go 1.19
// v1.19 fails on docker/docker
go 1.18

// Dependabot alert #20
require mellium.im/sasl v0.3.1 // indirect
Expand All @@ -11,6 +12,15 @@ require golang.org/x/net v0.7.0 // indirect
// Dependabot alerts #21, #22, #23
require github.com/opencontainers/runc v1.1.5 // indirect

// Dependabot alerts #24, #25, #26
//require github.com/moby/moby/v23 v23.0.3

// Update from https://github.com/ory/dockertest/pull/431
require github.com/docker/cli v23.0.3+incompatible // indirect

// Dependabot alerts #24, #25, #26
// replace github.com/docker/docker => github.com/moby/moby/v23 v23.0.3+incompatible

require (
github.com/go-logr/logr v1.2.3
github.com/go-logr/zapr v1.2.3
Expand All @@ -35,7 +45,6 @@ require (
github.com/codemodus/kace v0.5.1 // indirect
github.com/containerd/continuity v0.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/cli v20.10.14+incompatible // indirect
github.com/docker/docker v20.10.7+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ github.com/cyphar/filepath-securejoin v0.2.3/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxG
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/docker/cli v20.10.14+incompatible h1:dSBKJOVesDgHo7rbxlYjYsXe7gPzrTT+/cKQgpDAazg=
github.com/docker/cli v20.10.14+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
github.com/docker/cli v23.0.3+incompatible h1:Zcse1DuDqBdgI7OQDV8Go7b83xLgfhW1eza4HfEdxpY=
github.com/docker/cli v23.0.3+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
github.com/docker/docker v20.10.7+incompatible h1:Z6O9Nhsjv+ayUEeI1IojKbYcsGdgYSNqxe1s2MYzUhQ=
github.com/docker/docker v20.10.7+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=
Expand Down

0 comments on commit f48e166

Please sign in to comment.