-
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.
Merge pull request #7 from silinternational/develop
Release 1.0.5 -- Dependency Update
- Loading branch information
Showing
4 changed files
with
131 additions
and
540 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,44 @@ | ||
module github.com/silinternational/ecs-ami-deploy | ||
|
||
go 1.13 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/aws/aws-lambda-go v1.27.1 | ||
github.com/aws/aws-sdk-go-v2 v1.11.2 | ||
github.com/aws/aws-sdk-go-v2/config v1.11.0 | ||
github.com/aws/aws-sdk-go-v2/service/autoscaling v1.16.1 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.25.0 | ||
github.com/aws/aws-sdk-go-v2/service/ecs v1.13.1 | ||
github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c // indirect | ||
github.com/coreos/bbolt v1.3.2 // indirect | ||
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // indirect | ||
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/gorilla/websocket v1.4.2 // indirect | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 // indirect | ||
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect | ||
github.com/jonboulle/clockwork v0.1.0 // indirect | ||
github.com/aws/aws-lambda-go v1.37.0 | ||
github.com/aws/aws-sdk-go-v2 v1.17.5 | ||
github.com/aws/aws-sdk-go-v2/config v1.18.15 | ||
github.com/aws/aws-sdk-go-v2/service/autoscaling v1.27.2 | ||
github.com/aws/aws-sdk-go-v2/service/ec2 v1.86.1 | ||
github.com/aws/aws-sdk-go-v2/service/ecs v1.24.0 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/prometheus/tsdb v0.7.1 // indirect | ||
github.com/smartystreets/goconvey v1.6.4 // indirect | ||
github.com/soheilhy/cmux v0.1.4 // indirect | ||
github.com/spf13/cobra v1.3.0 | ||
github.com/spf13/cobra v1.6.1 | ||
github.com/spf13/viper v1.15.0 | ||
) | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go-v2/credentials v1.13.15 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.23 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.29 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.23 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.30 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.23 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.12.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.4 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.18.5 // indirect | ||
github.com/aws/smithy-go v1.13.5 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | ||
github.com/spf13/afero v1.9.4 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.10.1 | ||
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect | ||
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect | ||
go.etcd.io/bbolt v1.3.2 // indirect | ||
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/resty.v1 v1.12.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.4.2 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.