Skip to content

Commit 4b7e9a0

Browse files
authored
build: Go 1.17 (#116)
1 parent ddc1355 commit 4b7e9a0

File tree

5 files changed

+52
-8
lines changed

5 files changed

+52
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v2
2323
- name: Set up Go
24-
uses: actions/setup-go@v2.1.4
24+
uses: actions/setup-go@v2
2525
with:
26-
go-version: 1.16
26+
go-version: 1.17
2727
- name: Run tests
2828
run: make test
2929
- name: Run build

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@v2
2626
- name: Set up Go
27-
uses: actions/setup-go@v2.1.4
27+
uses: actions/setup-go@v2
2828
with:
29-
go-version: 1.16
29+
go-version: 1.17
3030
- name: Install TFLint
3131
run: curl -sL https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash
3232
- name: Install plugin (Linux)

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818
- name: Set up Go
19-
uses: actions/setup-go@v2.1.4
19+
uses: actions/setup-go@v2
2020
with:
21-
go-version: 1.16
21+
go-version: 1.17
2222
- name: Run GoReleaser
2323
uses: goreleaser/goreleaser-action@v2
2424
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ TFLint ruleset plugin for Terraform Google Cloud Platform provider
88
## Requirements
99

1010
- TFLint v0.30+
11-
- Go v1.16
11+
- Go v1.17
1212

1313
## Installation
1414

go.mod

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/terraform-linters/tflint-ruleset-google
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/dave/dst v0.26.2
@@ -13,3 +13,47 @@ require (
1313
github.com/terraform-linters/tflint-plugin-sdk v0.9.1
1414
google.golang.org/api v0.56.0
1515
)
16+
17+
require (
18+
cloud.google.com/go v0.93.3 // indirect
19+
github.com/agext/levenshtein v1.2.2 // indirect
20+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
21+
github.com/fatih/color v1.7.0 // indirect
22+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
23+
github.com/golang/protobuf v1.5.2 // indirect
24+
github.com/googleapis/gax-go/v2 v2.1.0 // indirect
25+
github.com/hashicorp/errwrap v1.0.0 // indirect
26+
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
27+
github.com/hashicorp/go-hclog v0.16.2 // indirect
28+
github.com/hashicorp/go-multierror v1.0.0 // indirect
29+
github.com/hashicorp/go-plugin v1.4.2 // indirect
30+
github.com/hashicorp/go-uuid v1.0.1 // indirect
31+
github.com/hashicorp/go-version v1.3.0 // indirect
32+
github.com/hashicorp/terraform-plugin-go v0.3.0 // indirect
33+
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
34+
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
35+
github.com/mattn/go-colorable v0.1.4 // indirect
36+
github.com/mattn/go-isatty v0.0.10 // indirect
37+
github.com/mitchellh/copystructure v1.2.0 // indirect
38+
github.com/mitchellh/go-testing-interface v1.0.4 // indirect
39+
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
40+
github.com/mitchellh/mapstructure v1.1.2 // indirect
41+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
42+
github.com/oklog/run v1.0.0 // indirect
43+
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
44+
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
45+
github.com/vmihailenco/tagparser v0.1.1 // indirect
46+
github.com/zclconf/go-cty v1.9.0 // indirect
47+
go.opencensus.io v0.23.0 // indirect
48+
golang.org/x/mod v0.4.2 // indirect
49+
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 // indirect
50+
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
51+
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect
52+
golang.org/x/text v0.3.6 // indirect
53+
golang.org/x/tools v0.1.5 // indirect
54+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
55+
google.golang.org/appengine v1.6.7 // indirect
56+
google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 // indirect
57+
google.golang.org/grpc v1.40.0 // indirect
58+
google.golang.org/protobuf v1.27.1 // indirect
59+
)

0 commit comments

Comments
 (0)