-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
177 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
module github.com/sethvargo/gcr-cleaner | ||
|
||
go 1.17 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/gammazero/workerpool v1.1.2 | ||
github.com/google/go-containerregistry v0.7.0 | ||
github.com/google/go-containerregistry v0.8.0 | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.97.0 // indirect | ||
github.com/docker/cli v20.10.11+incompatible // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v20.10.11+incompatible // indirect | ||
cloud.google.com/go/compute v1.5.0 // indirect | ||
github.com/docker/cli v20.10.14+incompatible // indirect | ||
github.com/docker/distribution v2.8.1+incompatible // indirect | ||
github.com/docker/docker v20.10.14+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.6.4 // indirect | ||
github.com/gammazero/deque v0.1.0 // indirect | ||
github.com/gammazero/deque v0.1.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.2 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
golang.org/x/net v0.0.0-20211118161319-6a13c67c3ce4 // indirect | ||
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
golang.org/x/net v0.0.0-20220325170049-de3da57026de // indirect | ||
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
golang.org/x/sys v0.0.0-20211117180635-dee7805ff2e1 // indirect | ||
golang.org/x/sys v0.0.0-20220330033206-e17cdc41300f // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
) |
Oops, something went wrong.