-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rui Yang <[email protected]>
- Loading branch information
Rui Yang
committed
Jun 2, 2023
1 parent
59a12bb
commit 38b75e9
Showing
3 changed files
with
497 additions
and
71 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,54 @@ | ||
module github.com/concourse/docker-image-resource | ||
|
||
go 1.14 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20220802171026-617dc7abb2ea | ||
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20230519004202-7f2db5bd753e | ||
github.com/cihub/seelog v0.0.0-20160420184328-a98235bd6d92 | ||
github.com/concourse/retryhttp v0.0.0-20160627222715-dd24ee5a434d | ||
github.com/docker/distribution v2.8.2+incompatible | ||
github.com/docker/go-metrics v0.0.1 // indirect | ||
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect | ||
github.com/golang/protobuf v1.4.2 // indirect | ||
github.com/gorilla/context v0.0.0-20160525203319-aed02d124ae4 // indirect | ||
github.com/gorilla/mux v0.0.0-20160718151158-d391bea3118c // indirect | ||
github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce // indirect | ||
github.com/hashicorp/go-multierror v0.0.0-20150916205742-d30f09973e19 | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/onsi/ginkgo v1.2.1-0.20160722022339-09289bfe14b6 | ||
github.com/onsi/gomega v0.0.0-20160718190435-9ed8da19f215 | ||
github.com/opencontainers/go-digest v1.0.0 | ||
github.com/opencontainers/image-spec v1.0.2 // indirect | ||
github.com/pivotal-golang/clock v0.0.0-20160705185712-da8295109ceb | ||
github.com/pivotal-golang/lager v0.0.0-20160311180000-7639e31ce662 | ||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.18.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/config v1.18.25 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.13.24 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.33 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.27 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.34 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ecr v1.18.11 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.16.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.27 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.12.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.10 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.19.0 // indirect | ||
github.com/aws/smithy-go v1.13.5 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/docker/docker-credential-helpers v0.7.0 // indirect | ||
github.com/docker/go-metrics v0.0.2-0.20221207153146-523432a393ef // indirect | ||
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/gorilla/context v0.0.0-20160525203319-aed02d124ae4 // indirect | ||
github.com/gorilla/mux v0.0.0-20160718151158-d391bea3118c // indirect | ||
github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.2 // indirect | ||
github.com/prometheus/client_golang v1.15.1 // indirect | ||
github.com/prometheus/client_model v0.4.0 // indirect | ||
github.com/prometheus/common v0.44.0 // indirect | ||
github.com/prometheus/procfs v0.9.0 // indirect | ||
github.com/sirupsen/logrus v1.9.2 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
Oops, something went wrong.