Skip to content

Commit 1fb11da

Browse files
authored
chore(gomod): update go.mod (#31)
1 parent c1cf4ec commit 1fb11da

File tree

5 files changed

+169
-144
lines changed

5 files changed

+169
-144
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,26 @@ on:
88
- "master"
99

1010
env:
11-
GO_VERSION: stable
11+
GO_VERSION: 1.25
1212
GOLANGCI_LINT_VERSION: v1.60
1313

1414
jobs:
1515
golangci-lint:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
19-
- uses: actions/setup-go@v5
18+
- uses: actions/checkout@v5
19+
- uses: actions/setup-go@v6
2020
with:
2121
go-version: ${{ env.GO_VERSION }}
2222
- name: golangci-lint Action
23-
uses: golangci/golangci-lint-action@v6
23+
uses: golangci/golangci-lint-action@v8
2424
with:
2525
args: --timeout=3m
2626

2727
terraform-tests:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- uses: hashicorp/[email protected]
3232
- name: Terraform Accepatance Tests
3333
run: |

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Release
66
on:
77
push:
88
tags:
9-
- 'v*'
9+
- "v*"
1010
workflow_dispatch:
1111
inputs:
1212
version:
@@ -20,14 +20,14 @@ permissions:
2020
contents: write
2121

2222
env:
23-
GO_VERSION: stable
23+
GO_VERSION: 1.25
2424

2525
jobs:
2626
goreleaser:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
30-
- uses: actions/setup-go@v5
29+
- uses: actions/checkout@v5
30+
- uses: actions/setup-go@v6
3131
with:
3232
cache: true
3333
go-version: ${{ env.GO_VERSION }}
@@ -47,4 +47,3 @@ jobs:
4747
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4848
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
4949
VERSION: ${{ github.event.inputs.version || github.ref }}
50-

.golangci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: "2"
2+
3+
run:
4+
timeout: 5m
5+
6+
linters:
7+
enable:
8+
- errcheck
9+
- govet
10+
- staticcheck
11+
- ineffassign
12+
- unused
13+
settings:
14+
errcheck:
15+
exclude-functions:
16+
- (io.Closer).Close

go.mod

Lines changed: 32 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,64 @@
11
module github.com/dragonflydb/terraform-provider-dfcloud
22

3-
go 1.23.0
4-
5-
toolchain go1.24.6
3+
go 1.25.3
64

75
require (
8-
github.com/hashicorp/terraform-plugin-framework v1.14.1
9-
github.com/hashicorp/terraform-plugin-go v0.26.0
6+
github.com/hashicorp/terraform-plugin-framework v1.16.1
7+
github.com/hashicorp/terraform-plugin-go v0.29.0
108
github.com/hashicorp/terraform-plugin-log v0.9.0
11-
github.com/hashicorp/terraform-plugin-testing v1.11.0
12-
github.com/samber/lo v1.47.0
9+
github.com/hashicorp/terraform-plugin-testing v1.13.3
10+
github.com/samber/lo v1.52.0
1311
)
1412

1513
require (
16-
github.com/ProtonMail/go-crypto v1.1.0-alpha.2 // indirect
14+
github.com/ProtonMail/go-crypto v1.1.6 // indirect
1715
github.com/agext/levenshtein v1.2.2 // indirect
1816
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
19-
github.com/cloudflare/circl v1.3.7 // indirect
20-
github.com/fatih/color v1.16.0 // indirect
17+
github.com/cloudflare/circl v1.6.1 // indirect
18+
github.com/fatih/color v1.18.0 // indirect
2119
github.com/golang/protobuf v1.5.4 // indirect
2220
github.com/google/go-cmp v0.7.0 // indirect
2321
github.com/hashicorp/errwrap v1.0.0 // indirect
2422
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
2523
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
26-
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
24+
github.com/hashicorp/go-cty v1.5.0 // indirect
2725
github.com/hashicorp/go-hclog v1.6.3 // indirect
2826
github.com/hashicorp/go-multierror v1.1.1 // indirect
29-
github.com/hashicorp/go-plugin v1.6.2 // indirect
27+
github.com/hashicorp/go-plugin v1.7.0 // indirect
3028
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
3129
github.com/hashicorp/go-uuid v1.0.3 // indirect
3230
github.com/hashicorp/go-version v1.7.0 // indirect
33-
github.com/hashicorp/hc-install v0.9.0 // indirect
34-
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
31+
github.com/hashicorp/hc-install v0.9.2 // indirect
32+
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
3533
github.com/hashicorp/logutils v1.0.0 // indirect
36-
github.com/hashicorp/terraform-exec v0.21.0 // indirect
37-
github.com/hashicorp/terraform-json v0.23.0 // indirect
38-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.35.0 // indirect
39-
github.com/hashicorp/terraform-registry-address v0.2.4 // indirect
34+
github.com/hashicorp/terraform-exec v0.23.1 // indirect
35+
github.com/hashicorp/terraform-json v0.27.1 // indirect
36+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.38.1 // indirect
37+
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
4038
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
41-
github.com/hashicorp/yamux v0.1.1 // indirect
42-
github.com/mattn/go-colorable v0.1.13 // indirect
39+
github.com/hashicorp/yamux v0.1.2 // indirect
40+
github.com/mattn/go-colorable v0.1.14 // indirect
4341
github.com/mattn/go-isatty v0.0.20 // indirect
4442
github.com/mitchellh/copystructure v1.2.0 // indirect
4543
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
46-
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
44+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
4745
github.com/mitchellh/mapstructure v1.5.0 // indirect
4846
github.com/mitchellh/reflectwalk v1.0.2 // indirect
49-
github.com/oklog/run v1.0.0 // indirect
47+
github.com/oklog/run v1.2.0 // indirect
5048
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
5149
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
5250
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
53-
github.com/zclconf/go-cty v1.15.0 // indirect
54-
golang.org/x/crypto v0.32.0 // indirect
55-
golang.org/x/mod v0.21.0 // indirect
56-
golang.org/x/net v0.34.0 // indirect
57-
golang.org/x/sync v0.10.0 // indirect
58-
golang.org/x/sys v0.29.0 // indirect
59-
golang.org/x/text v0.21.0 // indirect
60-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
51+
github.com/zclconf/go-cty v1.17.0 // indirect
52+
golang.org/x/crypto v0.43.0 // indirect
53+
golang.org/x/exp v0.0.0-20230809150735-7b3493d9a819 // indirect
54+
golang.org/x/mod v0.28.0 // indirect
55+
golang.org/x/net v0.46.0 // indirect
56+
golang.org/x/sync v0.17.0 // indirect
57+
golang.org/x/sys v0.37.0 // indirect
58+
golang.org/x/text v0.30.0 // indirect
59+
golang.org/x/tools v0.37.0 // indirect
6160
google.golang.org/appengine v1.6.8 // indirect
62-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
63-
google.golang.org/grpc v1.69.4 // indirect
64-
google.golang.org/protobuf v1.36.3 // indirect
61+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251020155222-88f65dc88635 // indirect
62+
google.golang.org/grpc v1.76.0 // indirect
63+
google.golang.org/protobuf v1.36.10 // indirect
6564
)

0 commit comments

Comments
 (0)