Skip to content

Commit 0c8dbec

Browse files
authored
chore: Fix go version in tests (#25)
1 parent 72be94e commit 0c8dbec

File tree

2 files changed

+54
-3
lines changed

2 files changed

+54
-3
lines changed

test/src/go.mod

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,58 @@
11
module github.com/cloudposse/terraform-example-module
22

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

57
require github.com/gruntwork-io/terratest v0.38.5
8+
9+
require (
10+
cloud.google.com/go v0.83.0 // indirect
11+
cloud.google.com/go/storage v1.10.0 // indirect
12+
github.com/agext/levenshtein v1.2.3 // indirect
13+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
14+
github.com/aws/aws-sdk-go v1.40.56 // indirect
15+
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
16+
github.com/davecgh/go-spew v1.1.1 // indirect
17+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
18+
github.com/golang/protobuf v1.5.2 // indirect
19+
github.com/golang/snappy v0.0.3 // indirect
20+
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
21+
github.com/hashicorp/errwrap v1.0.0 // indirect
22+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
23+
github.com/hashicorp/go-getter v1.5.9 // indirect
24+
github.com/hashicorp/go-multierror v1.1.0 // indirect
25+
github.com/hashicorp/go-safetemp v1.0.0 // indirect
26+
github.com/hashicorp/go-version v1.3.0 // indirect
27+
github.com/hashicorp/hcl/v2 v2.9.1 // indirect
28+
github.com/hashicorp/terraform-json v0.12.0 // indirect
29+
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a // indirect
30+
github.com/jmespath/go-jmespath v0.4.0 // indirect
31+
github.com/jstemmer/go-junit-report v0.9.1 // indirect
32+
github.com/klauspost/compress v1.13.0 // indirect
33+
github.com/mattn/go-zglob v0.0.2-0.20190814121620-e3c945676326 // indirect
34+
github.com/mitchellh/go-homedir v1.1.0 // indirect
35+
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
36+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
37+
github.com/pmezard/go-difflib v1.0.0 // indirect
38+
github.com/stretchr/testify v1.7.0 // indirect
39+
github.com/tmccombs/hcl2json v0.3.3 // indirect
40+
github.com/ulikunitz/xz v0.5.8 // indirect
41+
github.com/zclconf/go-cty v1.8.1 // indirect
42+
go.opencensus.io v0.23.0 // indirect
43+
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
44+
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
45+
golang.org/x/mod v0.4.2 // indirect
46+
golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect
47+
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c // indirect
48+
golang.org/x/sys v0.0.0-20210603125802-9665404d3644 // indirect
49+
golang.org/x/text v0.3.6 // indirect
50+
golang.org/x/tools v0.1.2 // indirect
51+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
52+
google.golang.org/api v0.47.0 // indirect
53+
google.golang.org/appengine v1.6.7 // indirect
54+
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect
55+
google.golang.org/grpc v1.38.0 // indirect
56+
google.golang.org/protobuf v1.26.0 // indirect
57+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
58+
)

test/src/go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRF
9898
github.com/alexflint/go-filemutex v0.0.0-20171022225611-72bdc8eae2ae/go.mod h1:CgnQgUtFrFz9mxFNtED3jI5tLDjKlOM+oUF/sTk6ps0=
9999
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
100100
github.com/apparentlymart/go-dump v0.0.0-20180507223929-23540a00eaa3/go.mod h1:oL81AME2rN47vu18xqj1S1jPIPuN7afo62yKTNn3XMM=
101-
github.com/apparentlymart/go-textseg v1.0.0 h1:rRmlIsPEEhUTIKQb7T++Nz/A5Q6C9IuX2wFoYVvnCs0=
102101
github.com/apparentlymart/go-textseg v1.0.0/go.mod h1:z96Txxhf3xSFMPmb5X/1W05FF/Nj9VFpLOpjS5yuumk=
103102
github.com/apparentlymart/go-textseg/v13 v13.0.0 h1:Y+KvPE1NYz0xl601PVImeQfFyEy6iT90AvPUL1NNfNw=
104103
github.com/apparentlymart/go-textseg/v13 v13.0.0/go.mod h1:ZK2fH7c4NqDTLtiYLvIkEghdlcqw7yxLeM89kiTRPUo=
@@ -468,7 +467,6 @@ github.com/hashicorp/go-version v1.3.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09
468467
github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90=
469468
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
470469
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
471-
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
472470
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
473471
github.com/hashicorp/hcl/v2 v2.9.1 h1:eOy4gREY0/ZQHNItlfuEZqtcQbXIxzojlP301hDpnac=
474472
github.com/hashicorp/hcl/v2 v2.9.1/go.mod h1:FwWsfWEjyV/CMj8s/gqAuiviY72rJ1/oayI9WftqcKg=

0 commit comments

Comments
 (0)