Skip to content

Commit 0abed40

Browse files
authored
chore: Fix go version in tests (#249)
1 parent e0790ab commit 0abed40

File tree

2 files changed

+12
-279
lines changed

2 files changed

+12
-279
lines changed

test/src/go.mod

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,29 @@
11
module github.com/cloudposse/terraform-aws-ec2-bastion-server
22

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

57
require (
6-
github.com/agext/levenshtein v1.2.3 // indirect
7-
github.com/gruntwork-io/gruntwork-cli v0.7.0 // indirect
88
github.com/gruntwork-io/terratest v0.34.7
9+
github.com/stretchr/testify v1.7.0
10+
)
11+
12+
require (
13+
github.com/agext/levenshtein v1.2.3 // indirect
14+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
15+
github.com/davecgh/go-spew v1.1.1 // indirect
916
github.com/hashicorp/errwrap v1.1.0 // indirect
1017
github.com/hashicorp/go-multierror v1.1.1 // indirect
1118
github.com/hashicorp/hcl/v2 v2.9.1 // indirect
1219
github.com/hashicorp/terraform-json v0.10.0 // indirect
1320
github.com/jinzhu/copier v0.2.9 // indirect
1421
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
15-
github.com/stretchr/testify v1.7.0
22+
github.com/pmezard/go-difflib v1.0.0 // indirect
1623
github.com/zclconf/go-cty v1.8.1 // indirect
1724
golang.org/x/crypto v0.0.0-20210415154028-4f45737414dc // indirect
1825
golang.org/x/net v0.0.0-20210420072503-d25e30425868 // indirect
1926
golang.org/x/sys v0.0.0-20210420072515-93ed5bcd2bfe // indirect
27+
golang.org/x/text v0.3.6 // indirect
2028
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
2129
)

0 commit comments

Comments
 (0)