Skip to content

Commit 5cda05e

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents c7f510a + f74ae45 commit 5cda05e

File tree

4 files changed

+123
-130
lines changed

4 files changed

+123
-130
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
runs-on: ubuntu-24.04
1212
timeout-minutes: 5
1313
steps:
14-
- uses: actions/checkout@v4
15-
- uses: actions/setup-go@v5
14+
- uses: actions/checkout@v6
15+
- uses: actions/setup-go@v6
1616
with:
1717
go-version-file: 'go.mod'
1818
cache: true
@@ -39,8 +39,8 @@ jobs:
3939
- '1.10.*'
4040
- '1.11.*'
4141
steps:
42-
- uses: actions/checkout@v4
43-
- uses: actions/setup-go@v5
42+
- uses: actions/checkout@v6
43+
- uses: actions/setup-go@v6
4444
with:
4545
go-version-file: 'go.mod'
4646
cache: true
@@ -54,12 +54,12 @@ jobs:
5454
golangci:
5555
runs-on: ubuntu-24.04
5656
steps:
57-
- uses: actions/checkout@v4
58-
- uses: actions/setup-go@v5
57+
- uses: actions/checkout@v6
58+
- uses: actions/setup-go@v6
5959
with:
6060
go-version-file: 'go.mod'
6161
cache: true
6262
- run: go mod download
63-
- uses: golangci/golangci-lint-action@v8
63+
- uses: golangci/golangci-lint-action@v9
6464
with:
65-
version: v2.1.6
65+
version: v2.1.6

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
goreleaser:
1313
runs-on: ubuntu-24.04
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
18-
- uses: actions/setup-go@v5
18+
- uses: actions/setup-go@v6
1919
with:
2020
go-version-file: 'go.mod'
2121
cache: true

go.mod

Lines changed: 27 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module github.com/mkdev-me/terraform-provider-openai
22

3-
go 1.24
3+
go 1.24.0
44

55
require (
66
github.com/hashicorp/terraform-plugin-docs v0.21.0
7-
github.com/hashicorp/terraform-plugin-log v0.9.0
8-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.1
7+
github.com/hashicorp/terraform-plugin-log v0.10.0
8+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.38.1
99
)
1010

1111
require (
@@ -14,76 +14,70 @@ require (
1414
github.com/Masterminds/goutils v1.1.1 // indirect
1515
github.com/Masterminds/semver/v3 v3.2.0 // indirect
1616
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
17-
github.com/ProtonMail/go-crypto v1.1.3 // indirect
17+
github.com/ProtonMail/go-crypto v1.1.6 // indirect
1818
github.com/agext/levenshtein v1.2.2 // indirect
1919
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
2020
github.com/armon/go-radix v1.0.0 // indirect
2121
github.com/bgentry/speakeasy v0.1.0 // indirect
2222
github.com/bmatcuk/doublestar/v4 v4.8.1 // indirect
23-
github.com/cloudflare/circl v1.3.7 // indirect
23+
github.com/cloudflare/circl v1.6.1 // indirect
2424
github.com/fatih/color v1.18.0 // indirect
25-
github.com/go-logr/logr v1.4.3 // indirect
2625
github.com/golang/protobuf v1.5.4 // indirect
2726
github.com/google/go-cmp v0.7.0 // indirect
2827
github.com/google/uuid v1.6.0 // indirect
2928
github.com/hashicorp/cli v1.1.7 // indirect
3029
github.com/hashicorp/errwrap v1.1.0 // indirect
3130
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
3231
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
33-
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
32+
github.com/hashicorp/go-cty v1.5.0 // indirect
3433
github.com/hashicorp/go-hclog v1.6.3 // indirect
3534
github.com/hashicorp/go-multierror v1.1.1 // indirect
36-
github.com/hashicorp/go-plugin v1.6.2 // indirect
35+
github.com/hashicorp/go-plugin v1.7.0 // indirect
3736
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
3837
github.com/hashicorp/go-uuid v1.0.3 // indirect
3938
github.com/hashicorp/go-version v1.7.0 // indirect
40-
github.com/hashicorp/hc-install v0.9.1 // indirect
41-
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
39+
github.com/hashicorp/hc-install v0.9.2 // indirect
40+
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
4241
github.com/hashicorp/logutils v1.0.0 // indirect
43-
github.com/hashicorp/terraform-exec v0.22.0 // indirect
44-
github.com/hashicorp/terraform-json v0.24.0 // indirect
45-
github.com/hashicorp/terraform-plugin-go v0.26.0 // indirect
46-
github.com/hashicorp/terraform-registry-address v0.2.4 // indirect
42+
github.com/hashicorp/terraform-exec v0.23.1 // indirect
43+
github.com/hashicorp/terraform-json v0.27.1 // indirect
44+
github.com/hashicorp/terraform-plugin-go v0.29.0 // indirect
45+
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
4746
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
48-
github.com/hashicorp/yamux v0.1.1 // indirect
47+
github.com/hashicorp/yamux v0.1.2 // indirect
4948
github.com/huandu/xstrings v1.3.3 // indirect
5049
github.com/imdario/mergo v0.3.15 // indirect
51-
github.com/kr/pretty v0.3.1 // indirect
5250
github.com/mattn/go-colorable v0.1.14 // indirect
5351
github.com/mattn/go-isatty v0.0.20 // indirect
5452
github.com/mattn/go-runewidth v0.0.9 // indirect
5553
github.com/mitchellh/copystructure v1.2.0 // indirect
5654
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
57-
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
55+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
5856
github.com/mitchellh/mapstructure v1.5.0 // indirect
5957
github.com/mitchellh/reflectwalk v1.0.2 // indirect
60-
github.com/oklog/run v1.0.0 // indirect
58+
github.com/oklog/run v1.1.0 // indirect
6159
github.com/posener/complete v1.2.3 // indirect
62-
github.com/rogpeppe/go-internal v1.14.1 // indirect
6360
github.com/shopspring/decimal v1.3.1 // indirect
6461
github.com/spf13/cast v1.5.0 // indirect
65-
github.com/stretchr/testify v1.10.0 // indirect
6662
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
6763
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
6864
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
6965
github.com/yuin/goldmark v1.7.7 // indirect
7066
github.com/yuin/goldmark-meta v1.1.0 // indirect
71-
github.com/zclconf/go-cty v1.16.2 // indirect
67+
github.com/zclconf/go-cty v1.17.0 // indirect
7268
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
73-
go.opentelemetry.io/otel v1.36.0 // indirect
74-
golang.org/x/crypto v0.39.0 // indirect
69+
golang.org/x/crypto v0.42.0 // indirect
7570
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect
76-
golang.org/x/mod v0.25.0 // indirect
77-
golang.org/x/net v0.41.0 // indirect
78-
golang.org/x/sync v0.15.0 // indirect
79-
golang.org/x/sys v0.33.0 // indirect
80-
golang.org/x/text v0.26.0 // indirect
81-
golang.org/x/tools v0.34.0 // indirect
71+
golang.org/x/mod v0.27.0 // indirect
72+
golang.org/x/net v0.43.0 // indirect
73+
golang.org/x/sync v0.17.0 // indirect
74+
golang.org/x/sys v0.36.0 // indirect
75+
golang.org/x/text v0.29.0 // indirect
76+
golang.org/x/tools v0.36.0 // indirect
8277
google.golang.org/appengine v1.6.8 // indirect
83-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
84-
google.golang.org/grpc v1.73.0 // indirect
85-
google.golang.org/protobuf v1.36.6 // indirect
86-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
78+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
79+
google.golang.org/grpc v1.75.1 // indirect
80+
google.golang.org/protobuf v1.36.9 // indirect
8781
gopkg.in/yaml.v2 v2.3.0 // indirect
8882
gopkg.in/yaml.v3 v3.0.1 // indirect
8983
)

0 commit comments

Comments
 (0)