Skip to content

Commit cb6e823

Browse files
chore(deps): Update go modules and/or dev-tools
1 parent 6ee7a6a commit cb6e823

File tree

7 files changed

+78
-29
lines changed

7 files changed

+78
-29
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Make will use bash instead of sh
1919
SHELL := /usr/bin/env bash
2020

21-
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.23
21+
DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.24
2222
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
2323
REGISTRY_URL := gcr.io/cloud-foundation-cicd
2424

build/int.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,4 +175,4 @@ options:
175175
- 'TF_IN_AUTOMATION=true'
176176
substitutions:
177177
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
178-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.23'
178+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.24'

build/lint.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ tags:
2424
- 'lint'
2525
substitutions:
2626
_DOCKER_IMAGE_DEVELOPER_TOOLS: 'cft/developer-tools'
27-
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.23'
27+
_DOCKER_TAG_VERSION_DEVELOPER_TOOLS: '1.24'
2828
options:
2929
machineType: 'N1_HIGHCPU_8'
3030
env:

helpers/foundation-deployer/go.mod

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
module github.com/terraform-google-modules/terraform-example-foundation/helpers/foundation-deployer
22

3-
go 1.22.7
3+
go 1.23.0
4+
45
toolchain go1.24.1
56

67
require (
7-
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.3
8-
github.com/gruntwork-io/terratest v0.48.1
8+
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.6
9+
github.com/gruntwork-io/terratest v0.49.0
910
github.com/hashicorp/hcl/v2 v2.23.0
1011
github.com/mitchellh/go-testing-interface v1.14.2-0.20210821155943-2d9075ca8770
1112
github.com/stretchr/testify v1.10.0
@@ -26,7 +27,7 @@ require (
2627
github.com/hashicorp/go-multierror v1.1.1 // indirect
2728
github.com/hashicorp/go-safetemp v1.0.0 // indirect
2829
github.com/hashicorp/go-version v1.7.0 // indirect
29-
github.com/hashicorp/terraform-json v0.23.0 // indirect
30+
github.com/hashicorp/terraform-json v0.24.0 // indirect
3031
github.com/jinzhu/copier v0.4.0 // indirect
3132
github.com/klauspost/compress v1.16.7 // indirect
3233
github.com/kr/pretty v0.1.0 // indirect
@@ -40,15 +41,15 @@ require (
4041
github.com/tidwall/sjson v1.2.5 // indirect
4142
github.com/tmccombs/hcl2json v0.6.4 // indirect
4243
github.com/ulikunitz/xz v0.5.11 // indirect
43-
github.com/zclconf/go-cty v1.15.0 // indirect
44+
github.com/zclconf/go-cty v1.15.1 // indirect
4445
golang.org/x/crypto v0.36.0 // indirect
45-
golang.org/x/mod v0.22.0 // indirect
46+
golang.org/x/mod v0.23.0 // indirect
4647
golang.org/x/net v0.38.0 // indirect
4748
golang.org/x/oauth2 v0.24.0 // indirect
4849
golang.org/x/sync v0.12.0 // indirect
4950
golang.org/x/sys v0.31.0 // indirect
5051
golang.org/x/text v0.23.0 // indirect
51-
golang.org/x/tools v0.22.0 // indirect
52+
golang.org/x/tools v0.26.0 // indirect
5253
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
5354
gopkg.in/yaml.v3 v3.0.1 // indirect
5455
)

helpers/foundation-deployer/go.sum

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ cloud.google.com/go/compute/metadata v0.5.2 h1:UxK4uu/Tn+I3p2dYWTfiX4wva7aYlKixA
22
cloud.google.com/go/compute/metadata v0.5.2/go.mod h1:C66sj2AluDcIqakBq/M8lw8/ybHgOZqin2obFxa/E5k=
33
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.3 h1:+lqTQyIdgr9XbI/onTPpwDnKR8I+MFKuIi6jeO8qDDQ=
44
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.3/go.mod h1:7uX+sVrlOPmrpkfuVSoO9qO0tWc23lVVCIQOL9GM5Qs=
5+
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.6 h1:ZuWhmUXY/co2jqEUYYosTlAruqzATzrYQ4IV5VKiKNM=
6+
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.6/go.mod h1:UX+iYMTzZ7Ik6N5rD8U32x7QwKaGyG/aAflWWDaHMDc=
57
github.com/agext/levenshtein v1.2.3 h1:YB2fHEn0UJagG8T1rrWknE3ZQzWM06O8AMAatNn7lmo=
68
github.com/agext/levenshtein v1.2.3/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558=
79
github.com/apparentlymart/go-textseg/v15 v15.0.0 h1:uYvfpb3DyLSCGWnctWKGj857c6ew1u1fNQOlOtuGxQY=
@@ -16,6 +18,8 @@ github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
1618
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
1719
github.com/gruntwork-io/terratest v0.48.1 h1:pnydDjkWbZCUYXvQkr24y21fBo8PfJC5hRGdwbl1eXM=
1820
github.com/gruntwork-io/terratest v0.48.1/go.mod h1:U2EQW4Odlz75XJUH16Kqkr9c93p+ZZtkpVez7GkZFa4=
21+
github.com/gruntwork-io/terratest v0.49.0 h1:GurfpHEOEr8vntB77QcxDh+P7aiQRUgPFdgb6q9PuWI=
22+
github.com/gruntwork-io/terratest v0.49.0/go.mod h1:/+dfGio9NqUpvvukuPo29B8zy6U5FYJn9PdmvwztK4A=
1923
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
2024
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
2125
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
@@ -33,6 +37,8 @@ github.com/hashicorp/hcl/v2 v2.23.0 h1:Fphj1/gCylPxHutVSEOf2fBOh1VE4AuLV7+kbJf3q
3337
github.com/hashicorp/hcl/v2 v2.23.0/go.mod h1:62ZYHrXgPoX8xBnzl8QzbWq4dyDsDtfCRgIq1rbJEvA=
3438
github.com/hashicorp/terraform-json v0.23.0 h1:sniCkExU4iKtTADReHzACkk8fnpQXrdD2xoR+lppBkI=
3539
github.com/hashicorp/terraform-json v0.23.0/go.mod h1:MHdXbBAbSg0GvzuWazEGKAn/cyNfIB7mN6y7KJN6y2c=
40+
github.com/hashicorp/terraform-json v0.24.0 h1:rUiyF+x1kYawXeRth6fKFm/MdfBS6+lW4NbeATsYz8Q=
41+
github.com/hashicorp/terraform-json v0.24.0/go.mod h1:Nfj5ubo9xbu9uiAoZVBsNOjvNKB66Oyrvtit74kC7ow=
3642
github.com/jinzhu/copier v0.4.0 h1:w3ciUoD19shMCRargcpm0cm91ytaBhDvuRpz1ODO/U8=
3743
github.com/jinzhu/copier v0.4.0/go.mod h1:DfbEm0FYsaqBcKcFuvmOZb218JkPGtvSHsKg8S8hyyg=
3844
github.com/klauspost/compress v1.16.7 h1:2mk3MPGNzKyxErAw8YaohYh69+pa4sIQSC0fPGCFR9I=
@@ -74,12 +80,16 @@ github.com/ulikunitz/xz v0.5.11 h1:kpFauv27b6ynzBNT/Xy+1k+fK4WswhN/6PN5WhFAGw8=
7480
github.com/ulikunitz/xz v0.5.11/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14=
7581
github.com/zclconf/go-cty v1.15.0 h1:tTCRWxsexYUmtt/wVxgDClUe+uQusuI443uL6e+5sXQ=
7682
github.com/zclconf/go-cty v1.15.0/go.mod h1:VvMs5i0vgZdhYawQNq5kePSpLAoz8u1xvZgrPIxfnZE=
83+
github.com/zclconf/go-cty v1.15.1 h1:RgQYm4j2EvoBRXOPxhUvxPzRrGDo1eCOhHXuGfrj5S0=
84+
github.com/zclconf/go-cty v1.15.1/go.mod h1:VvMs5i0vgZdhYawQNq5kePSpLAoz8u1xvZgrPIxfnZE=
7785
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940 h1:4r45xpDWB6ZMSMNJFMOjqrGHynW3DIBuR2H9j0ug+Mo=
7886
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940/go.mod h1:CmBdvvj3nqzfzJ6nTCIwDTPZ56aVGvDrmztiO5g3qrM=
7987
golang.org/x/crypto v0.36.0 h1:AnAEvhDddvBdpY+uR+MyHmuZzzNqXSe/GvuDeob5L34=
8088
golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc=
8189
golang.org/x/mod v0.22.0 h1:D4nJWe9zXqHOmWqj4VMOJhvzj7bEZg4wEYa759z1pH4=
8290
golang.org/x/mod v0.22.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
91+
golang.org/x/mod v0.23.0 h1:Zb7khfcRGKk+kqfxFaP5tZqCnDZMjC5VtUBs87Hr6QM=
92+
golang.org/x/mod v0.23.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
8393
golang.org/x/net v0.38.0 h1:vRMAPTMaeGqVhG5QyLJHqNDwecKTomGeqbnfZyKlBI8=
8494
golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8=
8595
golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
@@ -94,6 +104,8 @@ golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY=
94104
golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4=
95105
golang.org/x/tools v0.22.0 h1:gqSGLZqv+AI9lIQzniJ0nZDRG5GBPsSi+DRNHWNz6yA=
96106
golang.org/x/tools v0.22.0/go.mod h1:aCwcsjqvq7Yqt6TNyX7QMU2enbQ/Gt0bo6krSeEri+c=
107+
golang.org/x/tools v0.26.0 h1:v/60pFQmzmT9ExmjDv2gGIfi3OqfKoEP6I5+umXlbnQ=
108+
golang.org/x/tools v0.26.0/go.mod h1:TPVVj70c7JJ3WCazhD8OdXcZg/og+b9+tH/KxylGwH0=
97109
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
98110
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
99111
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

test/integration/go.mod

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ module github.com/terraform-google-modules/terraform-example-foundation/test/int
22

33
go 1.23.0
44

5-
toolchain go1.23.4
5+
toolchain go1.23.9
66

77
require (
8-
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.3
9-
github.com/gruntwork-io/terratest v0.48.1
8+
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.6
9+
github.com/gruntwork-io/terratest v0.49.0
1010
github.com/mitchellh/go-testing-interface v1.14.2-0.20210821155943-2d9075ca8770
1111
github.com/stretchr/testify v1.10.0
1212
github.com/tidwall/gjson v1.18.0
13-
golang.org/x/oauth2 v0.24.0
13+
golang.org/x/oauth2 v0.30.0
1414
)
1515

1616
require (
@@ -21,11 +21,11 @@ require (
2121
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
2222
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2323
github.com/go-errors/errors v1.5.0 // indirect
24-
github.com/go-openapi/jsonpointer v0.20.0 // indirect
24+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
2525
github.com/go-openapi/jsonreference v0.20.2 // indirect
26-
github.com/go-openapi/swag v0.22.4 // indirect
26+
github.com/go-openapi/swag v0.23.0 // indirect
2727
github.com/golang/protobuf v1.5.4 // indirect
28-
github.com/google/gnostic-models v0.6.8 // indirect
28+
github.com/google/gnostic-models v0.6.9 // indirect
2929
github.com/google/go-cmp v0.6.0 // indirect
3030
github.com/hashicorp/errwrap v1.1.0 // indirect
3131
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
@@ -35,8 +35,8 @@ require (
3535
github.com/hashicorp/go-version v1.7.0 // indirect
3636
github.com/hashicorp/hcl v0.0.0-20170504190234-a4b07c25de5f // indirect
3737
github.com/hashicorp/hcl/v2 v2.22.0 // indirect
38-
github.com/hashicorp/terraform-config-inspect v0.0.0-20241129133400-c404f8227ea6 // indirect
39-
github.com/hashicorp/terraform-json v0.23.0 // indirect
38+
github.com/hashicorp/terraform-config-inspect v0.0.0-20250203082807-efaa306e97b4 // indirect
39+
github.com/hashicorp/terraform-json v0.24.0 // indirect
4040
github.com/jinzhu/copier v0.4.0 // indirect
4141
github.com/josharian/intern v1.0.0 // indirect
4242
github.com/klauspost/compress v1.16.7 // indirect
@@ -51,17 +51,17 @@ require (
5151
github.com/tidwall/sjson v1.2.5 // indirect
5252
github.com/tmccombs/hcl2json v0.6.4 // indirect
5353
github.com/ulikunitz/xz v0.5.11 // indirect
54-
github.com/zclconf/go-cty v1.15.0 // indirect
55-
golang.org/x/crypto v0.35.0 // indirect
56-
golang.org/x/mod v0.22.0 // indirect
57-
golang.org/x/net v0.31.0 // indirect
58-
golang.org/x/sync v0.11.0 // indirect
59-
golang.org/x/sys v0.30.0 // indirect
60-
golang.org/x/text v0.22.0 // indirect
61-
golang.org/x/tools v0.22.0 // indirect
54+
github.com/zclconf/go-cty v1.15.1 // indirect
55+
golang.org/x/crypto v0.36.0 // indirect
56+
golang.org/x/mod v0.23.0 // indirect
57+
golang.org/x/net v0.38.0 // indirect
58+
golang.org/x/sync v0.12.0 // indirect
59+
golang.org/x/sys v0.31.0 // indirect
60+
golang.org/x/text v0.23.0 // indirect
61+
golang.org/x/tools v0.26.0 // indirect
6262
google.golang.org/protobuf v1.35.1 // indirect
6363
gopkg.in/yaml.v3 v3.0.1 // indirect
64-
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
65-
sigs.k8s.io/kustomize/kyaml v0.18.1 // indirect
64+
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
65+
sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect
6666
sigs.k8s.io/yaml v1.4.0 // indirect
6767
)

0 commit comments

Comments
 (0)