Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dependencies): replace directive order update #6903

Merged
merged 2 commits into from
Feb 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@ module github.com/Checkmarx/kics

go 1.21

replace (
github.com/containerd/containerd => github.com/containerd/containerd v1.6.26
github.com/docker/cli => github.com/docker/cli v20.10.12+incompatible
github.com/docker/docker => github.com/docker/docker v24.0.7+incompatible
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.1
github.com/moby/buildkit => github.com/moby/buildkit v0.12.5
github.com/opencontainers/image-spec => github.com/opencontainers/image-spec v1.0.2
github.com/spf13/afero => github.com/spf13/afero v1.2.2
go.etcd.io/etcd/pkg/v3 => go.etcd.io/etcd/pkg/v3 v3.5.10
golang.org/x/crypto => golang.org/x/crypto v0.17.0 // indirect
)

require (
code.cloudfoundry.org/bytefmt v0.0.0-20211005130812-5bb3c17173e5
github.com/BurntSushi/toml v1.3.2
Expand Down Expand Up @@ -231,15 +243,3 @@ require (
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)

replace (
github.com/containerd/containerd => github.com/containerd/containerd v1.6.26
github.com/docker/cli => github.com/docker/cli v20.10.12+incompatible
github.com/docker/docker => github.com/docker/docker v24.0.7+incompatible
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.1
github.com/moby/buildkit => github.com/moby/buildkit v0.12.5
github.com/opencontainers/image-spec => github.com/opencontainers/image-spec v1.0.2
github.com/spf13/afero => github.com/spf13/afero v1.2.2
go.etcd.io/etcd/pkg/v3 => go.etcd.io/etcd/pkg/v3 v3.5.10
golang.org/x/crypto => golang.org/x/crypto v0.17.0 // indirect
)
Loading