Skip to content

Commit

Permalink
fix(e2e): update dependencies to fix test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
prskr committed Jul 12, 2022
1 parent 1d21f17 commit e3ab14a
Show file tree
Hide file tree
Showing 4 changed files with 1,252 additions and 55 deletions.
20 changes: 18 additions & 2 deletions e2e/go.mod
@@ -1,6 +1,6 @@
module e2e

go 1.13
go 1.16

require (
github.com/docker/go-connections v0.4.0
Expand All @@ -9,4 +9,20 @@ require (
gotest.tools/gotestsum v1.8.1
)

replace github.com/testcontainers/testcontainers-go => ../
replace (
github.com/docker/cli => github.com/docker/cli v20.10.3-0.20220309205733-2b52f62e9627+incompatible
github.com/docker/docker => github.com/docker/docker v20.10.3-0.20220309172631-83b51522df43+incompatible

github.com/opencontainers/runc => github.com/opencontainers/runc v1.1.2 // Can be removed on next bump of containerd to > 1.6.4
github.com/testcontainers/testcontainers-go => ../
github.com/tonistiigi/fsutil => github.com/tonistiigi/fsutil v0.0.0-20220115021204-b19f7f9cb274

// For k8s dependencies, we use a replace directive, to prevent them being
// upgraded to the version specified in containerd, which is not relevant to the
// version needed.
// See https://github.com/docker/buildx/pull/948 for details.
// https://github.com/docker/buildx/blob/v0.8.1/go.mod#L62-L64
k8s.io/api => k8s.io/api v0.22.4
k8s.io/apimachinery => k8s.io/apimachinery v0.22.4
k8s.io/client-go => k8s.io/client-go v0.22.4
)

0 comments on commit e3ab14a

Please sign in to comment.