Skip to content

Commit 9aae0dc

Browse files
authored
build: Bump required Go version to 1.15 (#91)
1 parent 6102ee9 commit 9aae0dc

File tree

6 files changed

+146
-15
lines changed

6 files changed

+146
-15
lines changed

.github/workflows/ci-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up Go
4444
uses: actions/setup-go@v2
4545
with:
46-
go-version: ^1.14
46+
go-version: ^1.15
4747

4848
- name: Build project
4949
run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} go build -o terraform-provider-sysdig
@@ -59,7 +59,7 @@ jobs:
5959
- name: Set up Go
6060
uses: actions/setup-go@v2
6161
with:
62-
go-version: ^1.14
62+
go-version: ^1.15
6363

6464
- name: Cache modules
6565
uses: actions/cache@v1

.github/workflows/ci-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Set up Go
4444
uses: actions/setup-go@v2
4545
with:
46-
go-version: ^1.14
46+
go-version: ^1.15
4747

4848
- name: Build project
4949
run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} go build -o terraform-provider-sysdig
@@ -59,7 +59,7 @@ jobs:
5959
- name: Set up Go
6060
uses: actions/setup-go@v2
6161
with:
62-
go-version: ^1.14
62+
go-version: ^1.15
6363

6464
- name: Cache modules
6565
uses: actions/cache@v1

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Go
2626
uses: actions/setup-go@v2
2727
with:
28-
go-version: 1.14
28+
go-version: ^1.15
2929
- name: Import GPG key
3030
id: import_gpg
3131
uses: paultyng/[email protected]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Requirements
1212
------------
1313

1414
- [Terraform](https://www.terraform.io/downloads.html) > 0.12.x
15-
- [Go](https://golang.org/doc/install) > 1.14 (to build the provider plugin)
15+
- [Go](https://golang.org/doc/install) > 1.15 (to build the provider plugin)
1616

1717
Building The Provider
1818
---------------------

go.mod

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,40 @@
11
module github.com/draios/terraform-provider-sysdig
22

3-
go 1.12
3+
go 1.15
44

55
require (
6+
cloud.google.com/go v0.76.0 // indirect
7+
cloud.google.com/go/storage v1.13.0 // indirect
68
github.com/agext/levenshtein v1.2.3 // indirect
9+
github.com/apparentlymart/go-cidr v1.1.0 // indirect
10+
github.com/aws/aws-sdk-go v1.37.10 // indirect
711
github.com/fatih/color v1.10.0 // indirect
812
github.com/golang/protobuf v1.4.3 // indirect
913
github.com/google/go-cmp v0.5.4 // indirect
1014
github.com/hashicorp/errwrap v1.1.0 // indirect
15+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
1116
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
17+
github.com/hashicorp/go-getter v1.5.2 // indirect
1218
github.com/hashicorp/go-multierror v1.1.0 // indirect
1319
github.com/hashicorp/go-retryablehttp v0.6.8
1420
github.com/hashicorp/go-uuid v1.0.2 // indirect
1521
github.com/hashicorp/hcl/v2 v2.8.2 // indirect
16-
github.com/hashicorp/terraform-plugin-go v0.2.0 // indirect
17-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.4.0
22+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.4.3
1823
github.com/hashicorp/terraform-plugin-test/v2 v2.1.2 // indirect
1924
github.com/hashicorp/yamux v0.0.0-20200609203250-aecfd211c9ce // indirect
25+
github.com/klauspost/compress v1.11.7 // indirect
26+
github.com/mitchellh/copystructure v1.1.1 // indirect
2027
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
2128
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
22-
github.com/mitchellh/mapstructure v1.4.0 // indirect
29+
github.com/mitchellh/mapstructure v1.4.1 // indirect
2330
github.com/oklog/run v1.1.0 // indirect
2431
github.com/spf13/cast v1.3.1
32+
github.com/ulikunitz/xz v0.5.10 // indirect
2533
github.com/zclconf/go-cty v1.7.1 // indirect
26-
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect
27-
golang.org/x/sys v0.0.0-20210105210732-16f7687f5001 // indirect
28-
golang.org/x/text v0.3.4 // indirect
34+
go.opencensus.io v0.22.6 // indirect
35+
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
36+
golang.org/x/oauth2 v0.0.0-20210210192628-66670185b0cd // indirect
37+
google.golang.org/api v0.40.0 // indirect
2938
google.golang.org/appengine v1.6.7 // indirect
30-
google.golang.org/genproto v0.0.0-20210106152847-07624b53cd92 // indirect
31-
google.golang.org/grpc v1.34.0 // indirect
39+
google.golang.org/genproto v0.0.0-20210212180131-e7f2df4ecc2d // indirect
3240
)

0 commit comments

Comments
 (0)