Skip to content

Commit a7c3805

Browse files
committed
chore: Fix go version in tests
1 parent dd82633 commit a7c3805

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

test/src/go.mod

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,30 @@
11
module github.com/cloudposse/terraform-aws-ec2-instance-group
22

3-
go 1.14
3+
go 1.24
4+
5+
toolchain go1.24.0
46

57
require (
68
github.com/gruntwork-io/terratest v0.34.7
79
github.com/stretchr/testify v1.5.1
810
)
11+
12+
require (
13+
github.com/agext/levenshtein v1.2.1 // indirect
14+
github.com/apparentlymart/go-textseg v1.0.0 // indirect
15+
github.com/apparentlymart/go-textseg/v12 v12.0.0 // indirect
16+
github.com/davecgh/go-spew v1.1.1 // indirect
17+
github.com/hashicorp/errwrap v1.0.0 // indirect
18+
github.com/hashicorp/go-multierror v1.1.0 // indirect
19+
github.com/hashicorp/hcl/v2 v2.8.2 // indirect
20+
github.com/hashicorp/terraform-json v0.9.0 // indirect
21+
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a // indirect
22+
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect
23+
github.com/pmezard/go-difflib v1.0.0 // indirect
24+
github.com/zclconf/go-cty v1.2.1 // indirect
25+
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
26+
golang.org/x/net v0.0.0-20201021035429-f5854403a974 // indirect
27+
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f // indirect
28+
golang.org/x/text v0.3.3 // indirect
29+
gopkg.in/yaml.v2 v2.2.8 // indirect
30+
)

test/src/go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@ github.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+
215215
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
216216
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
217217
github.com/hashicorp/golang-lru v0.5.3/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4=
218-
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
219218
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
220219
github.com/hashicorp/hcl/v2 v2.8.2 h1:wmFle3D1vu0okesm8BTLVDyJ6/OL9DCLUwn0b2OptiY=
221220
github.com/hashicorp/hcl/v2 v2.8.2/go.mod h1:bQTN5mpo+jewjJgh8jr0JUguIi7qPHUF6yIfAEN3jqY=
@@ -517,7 +516,6 @@ golang.org/x/tools v0.0.0-20201110201400-7099162a900a/go.mod h1:emZCQorbCU4vsT4f
517516
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
518517
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
519518
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
520-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
521519
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
522520
gonum.org/v1/gonum v0.0.0-20190331200053-3d26580ed485/go.mod h1:2ltnJ7xHfj0zHS40VVPYEAAMTa3ZGguvHGBSJeRWqE0=
523521
gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw=

0 commit comments

Comments
 (0)