Skip to content

Commit f2e9643

Browse files
authored
Merge pull request #105 from StatusCakeDev/update-provider-dependencies
Update provider dependencies
2 parents 8df320a + c3ad8b0 commit f2e9643

File tree

6 files changed

+124
-447
lines changed

6 files changed

+124
-447
lines changed

.github/workflows/test.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
go:
1717
- "1.19"
1818
- "1.18"
19-
- "1.17"
2019
steps:
2120
- uses: actions/checkout@v2
2221
- uses: actions/setup-go@v1

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ friction within pull requests.
1111
## Installation
1212

1313
If you wish to work on the provider, you'll first need
14-
[Go](http://www.golang.org) installed on your machine (version 1.17+ is
14+
[Go](http://www.golang.org) installed on your machine (version 1.19+ is
1515
*required*). You'll also need to correctly setup a
1616
[GOPATH](http://golang.org/doc/code.html#GOPATH), as well as adding
1717
`$GOPATH/bin` to your `$PATH`.
1818

19-
To compile the provider, run `go build`. This will build the provider and
20-
should be moved to the `$GOPATH/bin` directory.
19+
To compile the provider, run `make build`. This will build the provider that
20+
should then be moved to the `$GOPATH/bin` directory.
2121

2222
```sh
23-
$ go build -o terraform-provider-statuscake
23+
$ make build
2424
$ mv terraform-provider-statuscake $GOPATH/bin/terraform-provider-statuscake
2525
...
2626
```

GNUmakefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
default: testacc
1+
BINARY_NAME := terraform-provider-statuscake
2+
3+
default: build
4+
5+
# Build provider binary
6+
.PHONY: build
7+
build:
8+
go build -o $(BINARY_NAME)
29

310
# Run acceptance tests
411
.PHONY: testacc

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
[![Support][support-badge]][support]
88

99
[support-badge]: https://img.shields.io/badge/support-terraform--statuscake-623CE4.svg?style=flat
10-
[support]: https://www.statuscake.com/kb/knowledge-base/integrating-with-terraform/
10+
[support]: https://developers.statuscake.com/guides/terraform/introduction
1111

1212
- Website: [terraform.io](https://terraform.io)
1313
- Tutorials: [learn.hashicorp.com](https://learn.hashicorp.com/terraform?track=getting-started#getting-started)
14-
- Support: [www.statuscake.com](https://www.statuscake.com/kb/knowledge-base/integrating-with-terraform/)
14+
- Support: [developers.statuscake.com](https://developers.statuscake.com/guides/terraform/introduction)
1515
- Chat: [gitter](https://gitter.im/hashicorp-terraform/Lobby)
1616
- Mailing List: [Google Groups](http://groups.google.com/group/terraform-tool)
1717

go.mod

Lines changed: 32 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,70 @@
11
module github.com/StatusCakeDev/terraform-provider-statuscake/v2
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/StatusCakeDev/statuscake-go v1.1.0
7-
github.com/hashicorp/terraform-plugin-docs v0.5.1
8-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.10.1
7+
github.com/hashicorp/terraform-plugin-docs v0.13.0
8+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.24.1
99
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11
1010
)
1111

1212
require (
13-
cloud.google.com/go v0.61.0 // indirect
14-
cloud.google.com/go/storage v1.10.0 // indirect
15-
github.com/Masterminds/goutils v1.1.0 // indirect
16-
github.com/Masterminds/semver v1.5.0 // indirect
17-
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
13+
github.com/Masterminds/goutils v1.1.1 // indirect
14+
github.com/Masterminds/semver/v3 v3.1.1 // indirect
15+
github.com/Masterminds/sprig/v3 v3.2.2 // indirect
1816
github.com/agext/levenshtein v1.2.3 // indirect
1917
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
20-
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310 // indirect
21-
github.com/aws/aws-sdk-go v1.25.3 // indirect
22-
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
18+
github.com/armon/go-radix v1.0.0 // indirect
2319
github.com/bgentry/speakeasy v0.1.0 // indirect
2420
github.com/fatih/color v1.13.0 // indirect
25-
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
2621
github.com/golang/protobuf v1.5.2 // indirect
27-
github.com/google/go-cmp v0.5.7 // indirect
28-
github.com/google/uuid v1.1.2 // indirect
29-
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
22+
github.com/google/go-cmp v0.5.9 // indirect
23+
github.com/google/uuid v1.3.0 // indirect
3024
github.com/hashicorp/errwrap v1.1.0 // indirect
3125
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
3226
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
3327
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
34-
github.com/hashicorp/go-getter v1.5.3 // indirect
35-
github.com/hashicorp/go-hclog v1.1.0 // indirect
28+
github.com/hashicorp/go-hclog v1.2.1 // indirect
3629
github.com/hashicorp/go-multierror v1.1.1 // indirect
37-
github.com/hashicorp/go-plugin v1.4.3 // indirect
38-
github.com/hashicorp/go-safetemp v1.0.0 // indirect
39-
github.com/hashicorp/go-uuid v1.0.2 // indirect
40-
github.com/hashicorp/go-version v1.4.0 // indirect
41-
github.com/hashicorp/hcl/v2 v2.11.1 // indirect
42-
github.com/hashicorp/terraform-exec v0.15.0 // indirect
43-
github.com/hashicorp/terraform-json v0.13.0 // indirect
44-
github.com/hashicorp/terraform-plugin-go v0.7.0 // indirect
45-
github.com/hashicorp/terraform-plugin-log v0.2.1 // indirect
46-
github.com/hashicorp/terraform-registry-address v0.0.0-20210816115301-cb2034eba045 // indirect
30+
github.com/hashicorp/go-plugin v1.4.6 // indirect
31+
github.com/hashicorp/go-uuid v1.0.3 // indirect
32+
github.com/hashicorp/go-version v1.6.0 // indirect
33+
github.com/hashicorp/hc-install v0.4.0 // indirect
34+
github.com/hashicorp/hcl/v2 v2.15.0 // indirect
35+
github.com/hashicorp/logutils v1.0.0 // indirect
36+
github.com/hashicorp/terraform-exec v0.17.3 // indirect
37+
github.com/hashicorp/terraform-json v0.14.0 // indirect
38+
github.com/hashicorp/terraform-plugin-go v0.14.1 // indirect
39+
github.com/hashicorp/terraform-plugin-log v0.7.0 // indirect
40+
github.com/hashicorp/terraform-registry-address v0.0.0-20220623143253-7d51757b572c // indirect
4741
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
4842
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
4943
github.com/huandu/xstrings v1.3.2 // indirect
50-
github.com/imdario/mergo v0.3.12 // indirect
51-
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
52-
github.com/jstemmer/go-junit-report v0.9.1 // indirect
53-
github.com/klauspost/compress v1.11.2 // indirect
44+
github.com/imdario/mergo v0.3.13 // indirect
5445
github.com/mattn/go-colorable v0.1.12 // indirect
5546
github.com/mattn/go-isatty v0.0.14 // indirect
56-
github.com/mitchellh/cli v1.1.2 // indirect
47+
github.com/mitchellh/cli v1.1.4 // indirect
5748
github.com/mitchellh/copystructure v1.2.0 // indirect
58-
github.com/mitchellh/go-homedir v1.1.0 // indirect
5949
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
6050
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
61-
github.com/mitchellh/mapstructure v1.4.3 // indirect
51+
github.com/mitchellh/mapstructure v1.5.0 // indirect
6252
github.com/mitchellh/reflectwalk v1.0.2 // indirect
6353
github.com/oklog/run v1.1.0 // indirect
64-
github.com/posener/complete v1.1.1 // indirect
54+
github.com/posener/complete v1.2.3 // indirect
6555
github.com/russross/blackfriday v1.6.0 // indirect
66-
github.com/ulikunitz/xz v0.5.8 // indirect
56+
github.com/shopspring/decimal v1.3.1 // indirect
57+
github.com/spf13/cast v1.5.0 // indirect
6758
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
6859
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
6960
github.com/vmihailenco/tagparser v0.1.2 // indirect
70-
github.com/zclconf/go-cty v1.10.0 // indirect
71-
go.opencensus.io v0.22.4 // indirect
72-
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect
73-
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
74-
golang.org/x/mod v0.4.2 // indirect
61+
github.com/zclconf/go-cty v1.12.1 // indirect
62+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
7563
golang.org/x/net v0.0.0-20220121210141-e204ce36a2ba // indirect
76-
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
77-
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
64+
golang.org/x/sys v0.0.0-20220627191245-f75cf1eec38b // indirect
7865
golang.org/x/text v0.3.7 // indirect
79-
golang.org/x/tools v0.1.2 // indirect
80-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
81-
google.golang.org/api v0.29.0 // indirect
8266
google.golang.org/appengine v1.6.7 // indirect
8367
google.golang.org/genproto v0.0.0-20220118154757-00ab72f36ad5 // indirect
84-
google.golang.org/grpc v1.43.0 // indirect
85-
google.golang.org/protobuf v1.27.1 // indirect
68+
google.golang.org/grpc v1.50.1 // indirect
69+
google.golang.org/protobuf v1.28.1 // indirect
8670
)

0 commit comments

Comments
 (0)