Skip to content

Commit c396657

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

File tree

7 files changed

+103
-38
lines changed

7 files changed

+103
-38
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.25
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.25'

‎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.25'
2828
options:
2929
machineType: 'N1_HIGHCPU_8'
3030
env:

‎helpers/foundation-deployer/go.mod

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

3-
go 1.22.7
4-
toolchain go1.24.1
3+
go 1.23.0
4+
5+
toolchain go1.24.5
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
9-
github.com/hashicorp/hcl/v2 v2.23.0
8+
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.7
9+
github.com/gruntwork-io/terratest v0.50.0
10+
github.com/hashicorp/hcl/v2 v2.24.0
1011
github.com/mitchellh/go-testing-interface v1.14.2-0.20210821155943-2d9075ca8770
1112
github.com/stretchr/testify v1.10.0
12-
github.com/terraform-google-modules/terraform-example-foundation/test/integration v0.0.0-20240808135927-5f1fd0f4104a
13+
github.com/terraform-google-modules/terraform-example-foundation/test/integration v0.0.0-20250523204443-6ee7a6ac7006
1314
github.com/tidwall/gjson v1.18.0
1415
)
1516

@@ -19,14 +20,14 @@ require (
1920
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2021
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
2122
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
22-
github.com/google/go-cmp v0.6.0 // indirect
23+
github.com/google/go-cmp v0.7.0 // indirect
2324
github.com/hashicorp/errwrap v1.1.0 // indirect
2425
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
2526
github.com/hashicorp/go-getter/v2 v2.2.3 // indirect
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.25.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-
golang.org/x/crypto v0.36.0 // indirect
45-
golang.org/x/mod v0.22.0 // indirect
44+
github.com/zclconf/go-cty v1.16.3 // indirect
45+
golang.org/x/crypto v0.38.0 // indirect
46+
golang.org/x/mod v0.24.0 // indirect
4647
golang.org/x/net v0.38.0 // indirect
4748
golang.org/x/oauth2 v0.24.0 // indirect
48-
golang.org/x/sync v0.12.0 // indirect
49-
golang.org/x/sys v0.31.0 // indirect
50-
golang.org/x/text v0.23.0 // indirect
51-
golang.org/x/tools v0.22.0 // indirect
49+
golang.org/x/sync v0.14.0 // indirect
50+
golang.org/x/sys v0.33.0 // indirect
51+
golang.org/x/text v0.25.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: 26 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.7 h1:vVlsDeV++LGlU+b11CbE8wHB7Jo62DJ+qqlSzyPfN5A=
6+
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.17.7/go.mod h1:Z431ZwEO0JJI6ysJMAEl1PJ1IUwQDljQeQx/0e96j5E=
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=
@@ -14,8 +16,12 @@ github.com/go-test/deep v1.0.7 h1:/VSMRlnY/JSyqxQUzQLKVMAskpY/NZKFA5j2P+0pP2M=
1416
github.com/go-test/deep v1.0.7/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8=
1517
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=
19+
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
20+
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
1721
github.com/gruntwork-io/terratest v0.48.1 h1:pnydDjkWbZCUYXvQkr24y21fBo8PfJC5hRGdwbl1eXM=
1822
github.com/gruntwork-io/terratest v0.48.1/go.mod h1:U2EQW4Odlz75XJUH16Kqkr9c93p+ZZtkpVez7GkZFa4=
23+
github.com/gruntwork-io/terratest v0.50.0 h1:AbBJ7IRCpLZ9H4HBrjeoWESITv8nLjN6/f1riMNcAsw=
24+
github.com/gruntwork-io/terratest v0.50.0/go.mod h1:see0lbKvAqz6rvzvN2wyfuFQQG4PWcAb2yHulF6B2q4=
1925
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
2026
github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I=
2127
github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
@@ -31,8 +37,12 @@ github.com/hashicorp/go-version v1.7.0 h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKe
3137
github.com/hashicorp/go-version v1.7.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
3238
github.com/hashicorp/hcl/v2 v2.23.0 h1:Fphj1/gCylPxHutVSEOf2fBOh1VE4AuLV7+kbJf3qos=
3339
github.com/hashicorp/hcl/v2 v2.23.0/go.mod h1:62ZYHrXgPoX8xBnzl8QzbWq4dyDsDtfCRgIq1rbJEvA=
40+
github.com/hashicorp/hcl/v2 v2.24.0 h1:2QJdZ454DSsYGoaE6QheQZjtKZSUs9Nh2izTWiwQxvE=
41+
github.com/hashicorp/hcl/v2 v2.24.0/go.mod h1:oGoO1FIQYfn/AgyOhlg9qLC6/nOJPX3qGbkZpYAcqfM=
3442
github.com/hashicorp/terraform-json v0.23.0 h1:sniCkExU4iKtTADReHzACkk8fnpQXrdD2xoR+lppBkI=
3543
github.com/hashicorp/terraform-json v0.23.0/go.mod h1:MHdXbBAbSg0GvzuWazEGKAn/cyNfIB7mN6y7KJN6y2c=
44+
github.com/hashicorp/terraform-json v0.25.0 h1:rmNqc/CIfcWawGiwXmRuiXJKEiJu1ntGoxseG1hLhoQ=
45+
github.com/hashicorp/terraform-json v0.25.0/go.mod h1:sMKS8fiRDX4rVlR6EJUMudg1WcanxCMoWwTLkgZP/vc=
3646
github.com/jinzhu/copier v0.4.0 h1:w3ciUoD19shMCRargcpm0cm91ytaBhDvuRpz1ODO/U8=
3747
github.com/jinzhu/copier v0.4.0/go.mod h1:DfbEm0FYsaqBcKcFuvmOZb218JkPGtvSHsKg8S8hyyg=
3848
github.com/klauspost/compress v1.16.7 h1:2mk3MPGNzKyxErAw8YaohYh69+pa4sIQSC0fPGCFR9I=
@@ -58,6 +68,8 @@ github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOf
5868
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
5969
github.com/terraform-google-modules/terraform-example-foundation/test/integration v0.0.0-20240808135927-5f1fd0f4104a h1:4Ih0BauwdUTF+YuA55/qY8Q+d5brYKPpae0YWkB9D2A=
6070
github.com/terraform-google-modules/terraform-example-foundation/test/integration v0.0.0-20240808135927-5f1fd0f4104a/go.mod h1:p8CvVuYRey5Nb8dipH5KM+eY+TnqfLgDnQ5M1a7oHiw=
71+
github.com/terraform-google-modules/terraform-example-foundation/test/integration v0.0.0-20250523204443-6ee7a6ac7006 h1:BTcTUqyNVGHr83L2NhwYYHV68kmf/0Oagyx2OD/KPcc=
72+
github.com/terraform-google-modules/terraform-example-foundation/test/integration v0.0.0-20250523204443-6ee7a6ac7006/go.mod h1:XsoM1QUls5BgdG+cExLBB487w5DBB1ajiUR8yLXePKk=
6173
github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
6274
github.com/tidwall/gjson v1.18.0 h1:FIDeeyB800efLX89e5a8Y0BNH+LOngJyGrIWxG2FKQY=
6375
github.com/tidwall/gjson v1.18.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
@@ -74,26 +86,40 @@ github.com/ulikunitz/xz v0.5.11 h1:kpFauv27b6ynzBNT/Xy+1k+fK4WswhN/6PN5WhFAGw8=
7486
github.com/ulikunitz/xz v0.5.11/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14=
7587
github.com/zclconf/go-cty v1.15.0 h1:tTCRWxsexYUmtt/wVxgDClUe+uQusuI443uL6e+5sXQ=
7688
github.com/zclconf/go-cty v1.15.0/go.mod h1:VvMs5i0vgZdhYawQNq5kePSpLAoz8u1xvZgrPIxfnZE=
89+
github.com/zclconf/go-cty v1.16.3 h1:osr++gw2T61A8KVYHoQiFbFd1Lh3JOCXc/jFLJXKTxk=
90+
github.com/zclconf/go-cty v1.16.3/go.mod h1:VvMs5i0vgZdhYawQNq5kePSpLAoz8u1xvZgrPIxfnZE=
7791
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940 h1:4r45xpDWB6ZMSMNJFMOjqrGHynW3DIBuR2H9j0ug+Mo=
7892
github.com/zclconf/go-cty-debug v0.0.0-20240509010212-0d6042c53940/go.mod h1:CmBdvvj3nqzfzJ6nTCIwDTPZ56aVGvDrmztiO5g3qrM=
7993
golang.org/x/crypto v0.36.0 h1:AnAEvhDddvBdpY+uR+MyHmuZzzNqXSe/GvuDeob5L34=
8094
golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc=
95+
golang.org/x/crypto v0.38.0 h1:jt+WWG8IZlBnVbomuhg2Mdq0+BBQaHbtqHEFEigjUV8=
96+
golang.org/x/crypto v0.38.0/go.mod h1:MvrbAqul58NNYPKnOra203SB9vpuZW0e+RRZV+Ggqjw=
8197
golang.org/x/mod v0.22.0 h1:D4nJWe9zXqHOmWqj4VMOJhvzj7bEZg4wEYa759z1pH4=
8298
golang.org/x/mod v0.22.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
99+
golang.org/x/mod v0.24.0 h1:ZfthKaKaT4NrhGVZHO1/WDTwGES4De8KtWO0SIbNJMU=
100+
golang.org/x/mod v0.24.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww=
83101
golang.org/x/net v0.38.0 h1:vRMAPTMaeGqVhG5QyLJHqNDwecKTomGeqbnfZyKlBI8=
84102
golang.org/x/net v0.38.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8=
85103
golang.org/x/oauth2 v0.24.0 h1:KTBBxWqUa0ykRPLtV69rRto9TLXcqYkeswu48x/gvNE=
86104
golang.org/x/oauth2 v0.24.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
87105
golang.org/x/sync v0.12.0 h1:MHc5BpPuC30uJk597Ri8TV3CNZcTLu6B6z4lJy+g6Jw=
88106
golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
107+
golang.org/x/sync v0.14.0 h1:woo0S4Yywslg6hp4eUFjTVOyKt0RookbpAHG4c1HmhQ=
108+
golang.org/x/sync v0.14.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
89109
golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik=
90110
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
111+
golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
112+
golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
91113
golang.org/x/term v0.30.0 h1:PQ39fJZ+mfadBm0y5WlL4vlM7Sx1Hgf13sMIY2+QS9Y=
92114
golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g=
93115
golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY=
94116
golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4=
117+
golang.org/x/text v0.25.0 h1:qVyWApTSYLk/drJRO5mDlNYskwQznZmkpV2c8q9zls4=
118+
golang.org/x/text v0.25.0/go.mod h1:WEdwpYrmk1qmdHvhkSTNPm3app7v4rsT8F2UD6+VHIA=
95119
golang.org/x/tools v0.22.0 h1:gqSGLZqv+AI9lIQzniJ0nZDRG5GBPsSi+DRNHWNz6yA=
96120
golang.org/x/tools v0.22.0/go.mod h1:aCwcsjqvq7Yqt6TNyX7QMU2enbQ/Gt0bo6krSeEri+c=
121+
golang.org/x/tools v0.26.0 h1:v/60pFQmzmT9ExmjDv2gGIfi3OqfKoEP6I5+umXlbnQ=
122+
golang.org/x/tools v0.26.0/go.mod h1:TPVVj70c7JJ3WCazhD8OdXcZg/og+b9+tH/KxylGwH0=
97123
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
98124
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
99125
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

‎test/integration/go.mod

Lines changed: 20 additions & 20 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.24.5
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.7
9+
github.com/gruntwork-io/terratest v0.50.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,12 +21,12 @@ 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
29-
github.com/google/go-cmp v0.6.0 // indirect
28+
github.com/google/gnostic-models v0.6.9 // indirect
29+
github.com/google/go-cmp v0.7.0 // indirect
3030
github.com/hashicorp/errwrap v1.1.0 // indirect
3131
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
3232
github.com/hashicorp/go-getter/v2 v2.2.3 // 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-20250515145901-f4c50e64fd6d // indirect
39+
github.com/hashicorp/terraform-json v0.25.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.16.2 // indirect
55+
golang.org/x/crypto v0.36.0 // indirect
56+
golang.org/x/mod v0.24.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)