-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
created root gomod and migrate monopod accordingly (#1205)
Signed-off-by: Josh Wolf <[email protected]>
- Loading branch information
Showing
5 changed files
with
63 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,49 @@ | ||
module github.com/chainguard-images/images/monopod | ||
module github.com/chainguard-images/images | ||
|
||
go 1.19 | ||
go 1.20 | ||
|
||
require ( | ||
chainguard.dev/apko v0.8.0 | ||
chainguard.dev/apko v0.10.0 | ||
github.com/dprotaso/go-yit v0.0.0-20220510233725-9ba8df137936 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 | ||
golang.org/x/text v0.10.0 | ||
golang.org/x/exp v0.0.0-20230811145659-89c5cff77bcb | ||
golang.org/x/text v0.12.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
sigs.k8s.io/release-utils v0.7.4 | ||
sigs.k8s.io/release-utils v0.7.5-0.20230601212346-3866fe05b204 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect | ||
github.com/ProtonMail/go-crypto v0.0.0-20230518184743-7afd39499903 // indirect | ||
github.com/acomagu/bufpipe v1.0.4 // indirect | ||
github.com/cloudflare/circl v1.3.3 // indirect | ||
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/emirpasic/gods v1.18.1 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-git/gcfg v1.5.0 // indirect | ||
github.com/go-git/go-billy/v5 v5.4.1 // indirect | ||
github.com/go-git/go-git/v5 v5.6.1 // indirect | ||
github.com/google/go-containerregistry v0.14.1-0.20230425172351-b7c6e9dc3944 // indirect | ||
github.com/google/go-containerregistry v0.15.2 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/imdario/mergo v0.3.15 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
github.com/jinzhu/copier v0.3.5 // indirect | ||
github.com/kevinburke/ssh_config v1.2.0 // indirect | ||
github.com/onsi/gomega v1.23.0 // indirect | ||
github.com/pjbgf/sha1cd v0.3.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rogpeppe/go-internal v1.10.0 // indirect | ||
github.com/sergi/go-diff v1.2.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/skeema/knownhosts v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/xanzy/ssh-agent v0.3.3 // indirect | ||
golang.org/x/crypto v0.8.0 // indirect | ||
golang.org/x/mod v0.10.0 // indirect | ||
golang.org/x/net v0.9.0 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
golang.org/x/term v0.7.0 // indirect | ||
golang.org/x/tools v0.8.0 // indirect | ||
golang.org/x/crypto v0.10.0 // indirect | ||
golang.org/x/mod v0.11.0 // indirect | ||
golang.org/x/net v0.11.0 // indirect | ||
golang.org/x/sys v0.9.0 // indirect | ||
golang.org/x/term v0.9.0 // indirect | ||
golang.org/x/tools v0.9.3 // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // indirect | ||
) |
Oops, something went wrong.