-
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
5 changed files
with
148 additions
and
126 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,29 +1,32 @@ | ||
module github.com/GoogleCloudPlatform/gcr-cleaner | ||
|
||
go 1.19 | ||
go 1.22 | ||
|
||
toolchain go1.22.1 | ||
|
||
require ( | ||
github.com/google/go-containerregistry v0.14.0 | ||
golang.org/x/sync v0.1.0 | ||
github.com/google/go-containerregistry v0.19.0 | ||
golang.org/x/sync v0.6.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.18.0 // indirect | ||
cloud.google.com/go/compute v1.25.0 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
github.com/docker/cli v23.0.6+incompatible // indirect | ||
github.com/docker/distribution v2.8.2+incompatible // indirect | ||
github.com/docker/docker v23.0.6+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.7.0 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/klauspost/compress v1.16.3 // indirect | ||
github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect | ||
github.com/docker/cli v25.0.3+incompatible // indirect | ||
github.com/docker/distribution v2.8.3+incompatible // indirect | ||
github.com/docker/docker v25.0.3+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.8.1 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/klauspost/compress v1.17.7 // 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.1.0-rc2 // indirect | ||
github.com/opencontainers/image-spec v1.1.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/oauth2 v0.6.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/vbatts/tar-split v0.11.5 // indirect | ||
golang.org/x/oauth2 v0.18.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
) |
Oops, something went wrong.