-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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: install tools using go.mod for versioning #2562
Changes from 3 commits
11cf53b
00a3696
93b8adf
ef2d626
48a313d
37c1c8f
de4bbbc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
module github.com/GoogleContainerTools/kaniko | ||
|
||
go 1.17 | ||
go 1.19 | ||
|
||
require ( | ||
cloud.google.com/go/storage v1.30.1 | ||
github.com/Azure/azure-storage-blob-go v0.14.0 | ||
github.com/GoogleCloudPlatform/docker-credential-gcr v1.5.1-0.20230328182921-62afb2723512 | ||
liam-verta marked this conversation as resolved.
Show resolved
Hide resolved
|
||
github.com/aws/aws-sdk-go-v2 v1.18.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.18.25 | ||
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.67 | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.33.1 | ||
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20220228164355-396b2034c795 | ||
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20230522190001-adf1bafd791a | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can verify the versions of the tools by comparing the commits strings on the ends here with the commit sha's that were in the docker file. |
||
github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589 | ||
github.com/containerd/cgroups v1.1.0 // indirect | ||
github.com/docker/docker v23.0.5+incompatible | ||
|
@@ -104,7 +105,6 @@ require ( | |
github.com/googleapis/gax-go/v2 v2.10.0 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect | ||
github.com/hashicorp/go-memdb v1.3.2 // indirect | ||
github.com/hashicorp/go-uuid v1.0.1 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/imdario/mergo v0.3.15 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
|
@@ -157,14 +157,27 @@ require ( | |
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go v61.3.0+incompatible // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ecr v1.15.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.12.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ecr v1.18.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.16.1 // indirect | ||
github.com/cloudflare/circl v1.3.3 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/google/go-querystring v1.1.0 // indirect | ||
github.com/google/s2a-go v0.1.4 // indirect | ||
github.com/google/subcommands v1.2.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/moby/swarmkit/v2 v2.0.0-20230315203717-e28e8ba9bc83 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pjbgf/sha1cd v0.3.0 // indirect | ||
github.com/skeema/knownhosts v1.1.1 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.8.1 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/toqueteos/webbrowser v1.2.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
gopkg.in/ini.v1 v1.62.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
Comment on lines
+164
to
+186
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are transitive dependencies that were being pulled dynamically, bypassing the local |
||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All this hackery is no longer needed.
go install github.com/GoogleCloudPlatform/docker-credential-gcr
will install the localvendor
version of the tool. That version is controlled viago.mod
andgo.sum
.