Skip to content

Commit d7acd29

Browse files
committed
chore: updated dependencies
1 parent 861d8d6 commit d7acd29

File tree

5 files changed

+106
-100
lines changed

5 files changed

+106
-100
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Dependency
2+
body: Updated go version and dependencies
3+
time: 2026-04-03T11:58:52.262032405+02:00

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
args: --issues-exit-code=0 --timeout=5m
2929

3030
- name: Run tests
31-
run: go test -race -coverprofile=coverage.out -covermode=atomic -coverpkg=./... ./...
31+
run: go test -timeout 30m -race -coverprofile=coverage.out -covermode=atomic -coverpkg=./... ./...
3232
env:
3333
TF_ACC: 1
3434
CTP_CLIENT_ID: unittest

.tool-versions

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
go 1.26.1
2+
3+

go.mod

Lines changed: 27 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/labd/terraform-provider-commercetools
22

3-
go 1.24.0
4-
5-
toolchain go1.24.1
3+
go 1.26.1
64

75
//replace github.com/labd/commercetools-go-sdk v1.5.1 => ../commercetools-go-sdk
86

@@ -12,16 +10,16 @@ require (
1210
github.com/google/uuid v1.6.0
1311
github.com/hashicorp/go-cty v1.5.0
1412
github.com/hashicorp/terraform-plugin-docs v0.24.0
15-
github.com/hashicorp/terraform-plugin-framework v1.17.0
13+
github.com/hashicorp/terraform-plugin-framework v1.19.0
1614
github.com/hashicorp/terraform-plugin-framework-validators v0.19.0
17-
github.com/hashicorp/terraform-plugin-go v0.29.0
18-
github.com/hashicorp/terraform-plugin-mux v0.21.0
19-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.38.1
15+
github.com/hashicorp/terraform-plugin-go v0.31.0
16+
github.com/hashicorp/terraform-plugin-mux v0.23.0
17+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.40.0
2018
github.com/labd/commercetools-go-sdk v1.8.0
2119
github.com/mitchellh/mapstructure v1.5.0
2220
github.com/stretchr/testify v1.11.1
23-
golang.org/x/oauth2 v0.34.0
24-
golang.org/x/text v0.32.0
21+
golang.org/x/oauth2 v0.36.0
22+
golang.org/x/text v0.35.0
2523
)
2624

2725
require (
@@ -30,15 +28,15 @@ require (
3028
github.com/Masterminds/goutils v1.1.1 // indirect
3129
github.com/Masterminds/semver/v3 v3.2.1 // indirect
3230
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
33-
github.com/ProtonMail/go-crypto v1.1.6 // indirect
31+
github.com/ProtonMail/go-crypto v1.4.1 // indirect
3432
github.com/agext/levenshtein v1.2.3 // indirect
3533
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
3634
github.com/armon/go-radix v1.0.0 // indirect
3735
github.com/bgentry/speakeasy v0.1.0 // indirect
3836
github.com/bmatcuk/doublestar/v4 v4.9.1 // indirect
39-
github.com/cloudflare/circl v1.6.1 // indirect
37+
github.com/cloudflare/circl v1.6.3 // indirect
4038
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
41-
github.com/fatih/color v1.16.0 // indirect
39+
github.com/fatih/color v1.19.0 // indirect
4240
github.com/golang/protobuf v1.5.4 // indirect
4341
github.com/google/go-cmp v0.7.0 // indirect
4442
github.com/hashicorp/cli v1.1.7 // indirect
@@ -48,17 +46,17 @@ require (
4846
github.com/hashicorp/go-hclog v1.6.3 // indirect
4947
github.com/hashicorp/go-multierror v1.1.1 // indirect
5048
github.com/hashicorp/go-plugin v1.7.0 // indirect
51-
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
49+
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
5250
github.com/hashicorp/go-uuid v1.0.3 // indirect
53-
github.com/hashicorp/go-version v1.7.0 // indirect
54-
github.com/hashicorp/hc-install v0.9.2 // indirect
51+
github.com/hashicorp/go-version v1.9.0 // indirect
52+
github.com/hashicorp/hc-install v0.9.3 // indirect
5553
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
5654
github.com/hashicorp/logutils v1.0.0 // indirect
57-
github.com/hashicorp/terraform-exec v0.24.0 // indirect
55+
github.com/hashicorp/terraform-exec v0.25.0 // indirect
5856
github.com/hashicorp/terraform-json v0.27.2 // indirect
5957
github.com/hashicorp/terraform-plugin-log v0.10.0 // indirect
6058
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
61-
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
59+
github.com/hashicorp/terraform-svchost v0.2.1 // indirect
6260
github.com/hashicorp/yamux v0.1.2 // indirect
6361
github.com/huandu/xstrings v1.4.0 // indirect
6462
github.com/imdario/mergo v0.3.16 // indirect
@@ -69,7 +67,7 @@ require (
6967
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
7068
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
7169
github.com/mitchellh/reflectwalk v1.0.2 // indirect
72-
github.com/oklog/run v1.1.0 // indirect
70+
github.com/oklog/run v1.2.0 // indirect
7371
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7472
github.com/posener/complete v1.2.3 // indirect
7573
github.com/shopspring/decimal v1.3.1 // indirect
@@ -79,19 +77,19 @@ require (
7977
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
8078
github.com/yuin/goldmark v1.7.7 // indirect
8179
github.com/yuin/goldmark-meta v1.1.0 // indirect
82-
github.com/zclconf/go-cty v1.17.0 // indirect
80+
github.com/zclconf/go-cty v1.18.0 // indirect
8381
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
84-
golang.org/x/crypto v0.44.0 // indirect
85-
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
86-
golang.org/x/mod v0.30.0 // indirect
87-
golang.org/x/net v0.47.0 // indirect
88-
golang.org/x/sync v0.19.0 // indirect
89-
golang.org/x/sys v0.38.0 // indirect
90-
golang.org/x/tools v0.39.0 // indirect
82+
golang.org/x/crypto v0.49.0 // indirect
83+
golang.org/x/exp v0.0.0-20260312153236-7ab1446f8b90 // indirect
84+
golang.org/x/mod v0.34.0 // indirect
85+
golang.org/x/net v0.52.0 // indirect
86+
golang.org/x/sync v0.20.0 // indirect
87+
golang.org/x/sys v0.42.0 // indirect
88+
golang.org/x/tools v0.43.0 // indirect
9189
google.golang.org/appengine v1.6.8 // indirect
92-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
93-
google.golang.org/grpc v1.75.1 // indirect
94-
google.golang.org/protobuf v1.36.9 // indirect
90+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
91+
google.golang.org/grpc v1.80.0 // indirect
92+
google.golang.org/protobuf v1.36.11 // indirect
9593
gopkg.in/yaml.v2 v2.3.0 // indirect
9694
gopkg.in/yaml.v3 v3.0.1 // indirect
9795
)

0 commit comments

Comments
 (0)