Skip to content

Commit 2d82472

Browse files
committed
refresh
1 parent 4e97589 commit 2d82472

File tree

5 files changed

+128
-128
lines changed

5 files changed

+128
-128
lines changed

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
markdown-link-check:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v5
1919
- uses: gaurav-nelson/github-action-markdown-link-check@v1
2020
with:
2121
use-quiet-mode: 'yes'
@@ -26,7 +26,7 @@ jobs:
2626
markdown-lint:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v5
3030
- uses: avto-dev/markdown-lint@v1
3131
with:
3232
config: '.markdownlint.yml'

.github/workflows/lint.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ jobs:
77
name: Run linter
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
11-
- uses: actions/setup-go@v5
10+
- uses: actions/checkout@v5
11+
- uses: actions/setup-go@v6
1212
with:
1313
go-version-file: "go.mod"
1414
- name: golangci-lint
1515
uses: golangci/golangci-lint-action@v8
1616
with:
17-
version: v2.1
1817
only-new-issues: true

bitbucket/data_file.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ func dataFileRead(ctx context.Context, d *schema.ResourceData, m interface{}) di
331331
func processJson(fileBody []byte, contentType string, include_commit bool, include_commit_links bool, include_links bool) (interface{}, error) {
332332

333333
if fileBody == nil {
334-
return nil, fmt.Errorf("missing response body.")
334+
return nil, fmt.Errorf("missing response body")
335335
}
336336
var fileValue FileValue
337337
err := fileValue.decode(fileBody, contentType)

go.mod

Lines changed: 27 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -3,41 +3,41 @@ module github.com/terraform-providers/terraform-provider-bitbucket
33
require (
44
github.com/DrFaust92/bitbucket-go-client v0.10.0
55
github.com/antihax/optional v1.0.0
6-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.36.1
6+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.38.1
77
github.com/satori/go.uuid v1.2.0
8-
golang.org/x/crypto v0.39.0
9-
golang.org/x/oauth2 v0.29.0
8+
golang.org/x/crypto v0.42.0
9+
golang.org/x/oauth2 v0.32.0
1010
)
1111

1212
require (
13-
github.com/ProtonMail/go-crypto v1.1.3 // indirect
13+
github.com/ProtonMail/go-crypto v1.1.6 // indirect
1414
github.com/agext/levenshtein v1.2.3 // indirect
1515
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
16-
github.com/cloudflare/circl v1.3.7 // indirect
16+
github.com/cloudflare/circl v1.6.1 // indirect
1717
github.com/fatih/color v1.16.0 // indirect
1818
github.com/golang/protobuf v1.5.4 // indirect
19-
github.com/google/go-cmp v0.6.0 // indirect
19+
github.com/google/go-cmp v0.7.0 // indirect
2020
github.com/hashicorp/errwrap v1.1.0 // indirect
2121
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
2222
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
23-
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
23+
github.com/hashicorp/go-cty v1.5.0 // indirect
2424
github.com/hashicorp/go-hclog v1.6.3 // indirect
2525
github.com/hashicorp/go-multierror v1.1.1 // indirect
26-
github.com/hashicorp/go-plugin v1.6.2 // indirect
26+
github.com/hashicorp/go-plugin v1.7.0 // indirect
2727
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
2828
github.com/hashicorp/go-uuid v1.0.3 // indirect
2929
github.com/hashicorp/go-version v1.7.0 // indirect
30-
github.com/hashicorp/hc-install v0.9.1 // indirect
31-
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
30+
github.com/hashicorp/hc-install v0.9.2 // indirect
31+
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
3232
github.com/hashicorp/logutils v1.0.0 // indirect
33-
github.com/hashicorp/terraform-exec v0.22.0 // indirect
34-
github.com/hashicorp/terraform-json v0.24.0 // indirect
35-
github.com/hashicorp/terraform-plugin-go v0.26.0 // indirect
33+
github.com/hashicorp/terraform-exec v0.23.1 // indirect
34+
github.com/hashicorp/terraform-json v0.27.1 // indirect
35+
github.com/hashicorp/terraform-plugin-go v0.29.0 // indirect
3636
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
37-
github.com/hashicorp/terraform-registry-address v0.2.4 // indirect
37+
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
3838
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
39-
github.com/hashicorp/yamux v0.1.1 // indirect
40-
github.com/kr/pretty v0.3.1 // indirect
39+
github.com/hashicorp/yamux v0.1.2 // indirect
40+
github.com/kr/text v0.2.0 // indirect
4141
github.com/mattn/go-colorable v0.1.14 // indirect
4242
github.com/mattn/go-isatty v0.0.20 // indirect
4343
github.com/mitchellh/copystructure v1.2.0 // indirect
@@ -46,23 +46,20 @@ require (
4646
github.com/mitchellh/mapstructure v1.5.0 // indirect
4747
github.com/mitchellh/reflectwalk v1.0.2 // indirect
4848
github.com/oklog/run v1.1.0 // indirect
49-
github.com/rogpeppe/go-internal v1.12.0 // indirect
5049
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
5150
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
5251
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
53-
github.com/zclconf/go-cty v1.16.2 // indirect
54-
golang.org/x/mod v0.25.0 // indirect
55-
golang.org/x/net v0.41.0 // indirect
56-
golang.org/x/sync v0.15.0 // indirect
57-
golang.org/x/sys v0.33.0 // indirect
58-
golang.org/x/text v0.26.0 // indirect
59-
golang.org/x/tools v0.34.0 // indirect
52+
github.com/zclconf/go-cty v1.17.0 // indirect
53+
golang.org/x/mod v0.27.0 // indirect
54+
golang.org/x/net v0.43.0 // indirect
55+
golang.org/x/sync v0.17.0 // indirect
56+
golang.org/x/sys v0.36.0 // indirect
57+
golang.org/x/text v0.29.0 // indirect
58+
golang.org/x/tools v0.36.0 // indirect
6059
google.golang.org/appengine v1.6.8 // indirect
61-
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
62-
google.golang.org/grpc v1.69.4 // indirect
63-
google.golang.org/protobuf v1.36.3 // indirect
60+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
61+
google.golang.org/grpc v1.75.1 // indirect
62+
google.golang.org/protobuf v1.36.9 // indirect
6463
)
6564

66-
go 1.23.0
67-
68-
toolchain go1.23.8
65+
go 1.24.0

0 commit comments

Comments
 (0)