-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use tickers and channels for the timeout * Update versions
- Loading branch information
1 parent
e4c46f7
commit c5d9f05
Showing
7 changed files
with
46 additions
and
37 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
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,16 +1,39 @@ | ||
module github.com/adroll/ecs-ship | ||
|
||
go 1.14 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2 v1.30.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/config v1.27.21 // indirect | ||
github.com/aws/aws-sdk-go-v2 v1.30.0 | ||
github.com/aws/aws-sdk-go-v2/config v1.27.21 | ||
github.com/aws/aws-sdk-go-v2/service/ecs v1.43.1 | ||
github.com/fatih/color v1.9.0 | ||
github.com/golang/mock v1.4.3 | ||
github.com/joomcode/errorx v1.1.1 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/urfave/cli/v2 v2.2.0 | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.8 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.12 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.12 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.14 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.21.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.25.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.29.1 // indirect | ||
github.com/aws/smithy-go v1.20.2 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/mattn/go-colorable v0.1.4 // indirect | ||
github.com/mattn/go-isatty v0.0.11 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.0.1 // indirect | ||
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
) |
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