Skip to content

Commit 982164d

Browse files
fix(deps): update all non-major dependencies
1 parent 2265315 commit 982164d

File tree

8 files changed

+88
-40
lines changed

8 files changed

+88
-40
lines changed

.github/workflows/generate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2020
with:
2121
persist-credentials: false
22-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
22+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2323
with:
2424
go-version-file: 'go.mod'
2525
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ jobs:
2020
# Allow goreleaser to access older tag information.
2121
fetch-depth: 0
2222
persist-credentials: false
23-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
23+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2424
with:
2525
go-version-file: 'go.mod'
2626
cache: false
2727
- name: Import GPG key
28-
uses: crazy-max/ghaction-import-gpg@cb9bde2e2525e640591a934b1fd28eef1dcaf5e5 # v6.2.0
28+
uses: crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec # v6.3.0
2929
id: import_gpg
3030
with:
3131
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
3232
passphrase: ${{ secrets.PASSPHRASE }}
3333
- name: Run GoReleaser
34-
uses: goreleaser/goreleaser-action@90a3faa9d0182683851fbfa97ca1a2cb983bfca3 # v6.2.1
34+
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
3535
with:
3636
args: release --clean
3737
env:

.github/workflows/test-extensive.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ jobs:
4040
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4141
with:
4242
persist-credentials: false
43-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
43+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
4444
with:
4545
go-version-file: 'go.mod'
4646
- run: make build
4747
- name: Run linters
48-
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # v7
48+
uses: golangci/golangci-lint-action@9fae48acfc02a90574d7c304a1758ef9895495fa # v7
4949

5050
test-terraform:
5151
name: integration-terraform
@@ -64,7 +64,7 @@ jobs:
6464
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6565
with:
6666
persist-credentials: false
67-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
67+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
6868
with:
6969
go-version-file: 'go.mod'
7070
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
@@ -95,7 +95,7 @@ jobs:
9595
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9696
with:
9797
persist-credentials: false
98-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
98+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
9999
with:
100100
go-version-file: 'go.mod'
101101
- uses: opentofu/setup-opentofu@592200bd4b9bbf4772ace78f887668b1aee8f716 # v1

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2525
with:
2626
persist-credentials: false
27-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
27+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
2828
with:
2929
go-version-file: 'go.mod'
3030
- run: go build -v .
3131
- name: Run linters
32-
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # v7
32+
uses: golangci/golangci-lint-action@9fae48acfc02a90574d7c304a1758ef9895495fa # v7
3333

3434
generate:
3535
name: generate diff test
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3939
with:
4040
persist-credentials: false
41-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
41+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
4242
with:
4343
go-version-file: 'go.mod'
4444
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6161
with:
6262
persist-credentials: false
63-
- uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
63+
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
6464
with:
6565
go-version-file: 'go.mod'
6666
- run: make test

.github/workflows/validate-renovate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
persist-credentials: false
1818

19-
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
19+
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
2020
with:
2121
node-version: 20
2222

.github/workflows/zizmor.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
persist-credentials: false
2323

2424
- name: Install the latest version of uv
25-
uses: astral-sh/setup-uv@22695119d769bdb6f7032ad67b9bca0ef8c4a174 # v5
25+
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
2626

2727
- name: Run zizmor 🌈
2828
run: uvx zizmor --format sarif . > results.sarif
2929
env:
3030
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131

3232
- name: Upload SARIF file
33-
uses: github/codeql-action/upload-sarif@5f8171a638ada777af81d42b55959a643bb29017 # v3
33+
uses: github/codeql-action/upload-sarif@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3
3434
with:
3535
sarif_file: results.sarif
3636
category: zizmor

go.mod

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@ module github.com/planetscale/terraform-provider-planetscale
22

33
go 1.23.0
44

5-
toolchain go1.24.1
5+
toolchain go1.24.3
66

77
require (
88
github.com/dave/jennifer v1.7.1
99
github.com/go-openapi/loads v0.22.0
1010
github.com/go-openapi/spec v0.21.0
1111
github.com/google/go-cmp v0.7.0
12-
github.com/hashicorp/terraform-plugin-framework v1.14.1
13-
github.com/hashicorp/terraform-plugin-framework-validators v0.17.0
14-
github.com/hashicorp/terraform-plugin-go v0.26.0
12+
github.com/hashicorp/terraform-plugin-framework v1.15.0
13+
github.com/hashicorp/terraform-plugin-framework-validators v0.18.0
14+
github.com/hashicorp/terraform-plugin-go v0.28.0
1515
github.com/hashicorp/terraform-plugin-log v0.9.0
16-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.1
17-
github.com/hashicorp/terraform-plugin-testing v1.12.0
16+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0
17+
github.com/hashicorp/terraform-plugin-testing v1.13.1
1818
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
1919
github.com/pkg/errors v0.9.1
2020
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3
21-
github.com/stretchr/testify v1.9.0
22-
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394
23-
golang.org/x/oauth2 v0.28.0
24-
golang.org/x/text v0.23.0
21+
github.com/stretchr/testify v1.10.0
22+
golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6
23+
golang.org/x/oauth2 v0.30.0
24+
golang.org/x/text v0.25.0
2525
)
2626

2727
require (
@@ -30,14 +30,14 @@ require (
3030
github.com/Masterminds/goutils v1.1.1 // indirect
3131
github.com/Masterminds/semver/v3 v3.2.0 // indirect
3232
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
33-
github.com/ProtonMail/go-crypto v1.1.3 // indirect
33+
github.com/ProtonMail/go-crypto v1.1.6 // indirect
3434
github.com/agext/levenshtein v1.2.2 // indirect
3535
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
3636
github.com/armon/go-radix v1.0.0 // indirect
3737
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
3838
github.com/bgentry/speakeasy v0.1.0 // indirect
3939
github.com/bmatcuk/doublestar/v4 v4.8.1 // indirect
40-
github.com/cloudflare/circl v1.3.7 // indirect
40+
github.com/cloudflare/circl v1.6.0 // indirect
4141
github.com/davecgh/go-spew v1.1.1 // indirect
4242
github.com/fatih/color v1.17.0 // indirect
4343
github.com/frankban/quicktest v1.14.5 // indirect
@@ -56,17 +56,17 @@ require (
5656
github.com/hashicorp/go-cty v1.5.0 // indirect
5757
github.com/hashicorp/go-hclog v1.6.3 // indirect
5858
github.com/hashicorp/go-multierror v1.1.1 // indirect
59-
github.com/hashicorp/go-plugin v1.6.2 // indirect
59+
github.com/hashicorp/go-plugin v1.6.3 // indirect
6060
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
6161
github.com/hashicorp/go-uuid v1.0.3 // indirect
6262
github.com/hashicorp/go-version v1.7.0 // indirect
63-
github.com/hashicorp/hc-install v0.9.1 // indirect
63+
github.com/hashicorp/hc-install v0.9.2 // indirect
6464
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
6565
github.com/hashicorp/logutils v1.0.0 // indirect
66-
github.com/hashicorp/terraform-exec v0.22.0 // indirect
67-
github.com/hashicorp/terraform-json v0.24.0 // indirect
66+
github.com/hashicorp/terraform-exec v0.23.0 // indirect
67+
github.com/hashicorp/terraform-json v0.25.0 // indirect
6868
github.com/hashicorp/terraform-plugin-docs v0.21.0 // indirect
69-
github.com/hashicorp/terraform-registry-address v0.2.4 // indirect
69+
github.com/hashicorp/terraform-registry-address v0.2.5 // indirect
7070
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
7171
github.com/hashicorp/yamux v0.1.1 // indirect
7272
github.com/huandu/xstrings v1.3.3 // indirect
@@ -95,16 +95,16 @@ require (
9595
github.com/zclconf/go-cty v1.16.2 // indirect
9696
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
9797
go.mongodb.org/mongo-driver v1.14.0 // indirect
98-
golang.org/x/crypto v0.36.0 // indirect
98+
golang.org/x/crypto v0.38.0 // indirect
9999
golang.org/x/mod v0.24.0 // indirect
100-
golang.org/x/net v0.38.0 // indirect
101-
golang.org/x/sync v0.12.0 // indirect
102-
golang.org/x/sys v0.31.0 // indirect
103-
golang.org/x/tools v0.31.0 // indirect
100+
golang.org/x/net v0.40.0 // indirect
101+
golang.org/x/sync v0.14.0 // indirect
102+
golang.org/x/sys v0.33.0 // indirect
103+
golang.org/x/tools v0.33.0 // indirect
104104
google.golang.org/appengine v1.6.8 // indirect
105-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
106-
google.golang.org/grpc v1.69.4 // indirect
107-
google.golang.org/protobuf v1.36.3 // indirect
105+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
106+
google.golang.org/grpc v1.72.1 // indirect
107+
google.golang.org/protobuf v1.36.6 // indirect
108108
gopkg.in/yaml.v2 v2.4.0 // indirect
109109
gopkg.in/yaml.v3 v3.0.1 // indirect
110110
)

0 commit comments

Comments
 (0)