Skip to content

Commit 41bf634

Browse files
authored
Update Go to 1.17 (#27)
1 parent 3bfce23 commit 41bf634

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: set up Go
1818
uses: actions/setup-go@v1
1919
with:
20-
go-version: 1.15.x
20+
go-version: 1.17.x
2121
-
2222
name: run GoReleaser
2323
uses: goreleaser/goreleaser-action@v1

go.mod

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,36 @@
11
module github.com/springload/ecs-tool
22

3-
go 1.12
3+
go 1.17
44

55
require (
6-
github.com/BurntSushi/toml v0.3.1 // indirect
76
github.com/Shopify/ejson v1.2.1
87
github.com/apex/log v1.0.0
98
github.com/aws/aws-sdk-go v1.41.2
9+
github.com/imdario/mergo v0.3.11
10+
github.com/spf13/cobra v0.0.3
11+
github.com/spf13/viper v1.0.2
12+
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
13+
)
14+
15+
require (
16+
github.com/BurntSushi/toml v0.3.1 // indirect
1017
github.com/davecgh/go-spew v1.1.1 // indirect
1118
github.com/dustin/gojson v0.0.0-20160307161227-2e71ec9dd5ad // indirect
1219
github.com/fsnotify/fsnotify v1.4.7 // indirect
1320
github.com/hashicorp/hcl v0.0.0-20180404174102-ef8a98b0bbce // indirect
14-
github.com/imdario/mergo v0.3.11
1521
github.com/inconshreveable/mousetrap v1.0.0 // indirect
22+
github.com/jmespath/go-jmespath v0.4.0 // indirect
1623
github.com/magiconair/properties v1.8.0 // indirect
1724
github.com/mitchellh/mapstructure v0.0.0-20180511142126-bb74f1db0675 // indirect
1825
github.com/pelletier/go-toml v1.2.0 // indirect
26+
github.com/pkg/errors v0.9.1 // indirect
1927
github.com/smartystreets/goconvey v1.6.4 // indirect
2028
github.com/spf13/afero v1.1.1 // indirect
2129
github.com/spf13/cast v1.2.0 // indirect
22-
github.com/spf13/cobra v0.0.3
2330
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect
2431
github.com/spf13/pflag v1.0.1 // indirect
25-
github.com/spf13/viper v1.0.2
2632
github.com/stretchr/testify v1.5.1 // indirect
27-
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
33+
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect
34+
golang.org/x/text v0.3.6 // indirect
35+
gopkg.in/yaml.v2 v2.3.0 // indirect
2836
)

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 h1:HuIa8hRrWRSrqYzx1qI49N
6161
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
6262
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
6363
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
64-
golang.org/x/net v0.0.0-20210614182718-04defd469f4e h1:XpT3nA5TvE525Ne3hInMh6+GETgn27Zfm9dxsThnX2Q=
6564
golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
6665
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
6766
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

0 commit comments

Comments
 (0)