Skip to content

Commit 11205ad

Browse files
authored
build: Go 1.17 (#133)
1 parent cdea20f commit 11205ad

File tree

4 files changed

+28
-6
lines changed

4 files changed

+28
-6
lines changed

.github/workflows/build.yml

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

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
- name: Checkout
1616
uses: actions/checkout@v2
1717
- name: Set up Go
18-
uses: actions/setup-go@v2.1.3
18+
uses: actions/setup-go@v2
1919
with:
20-
go-version: 1.16
20+
go-version: 1.17
2121
- name: Run linters
2222
run: |
2323
export PATH=$PATH:$(go env GOPATH)/bin

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ NOTE: This plugin system is experimental. This means that API compatibility is f
1111
## Requirements
1212

1313
- TFLint v0.30+
14-
- Go v1.16
14+
- Go v1.17
1515

1616
## Usage
1717

go.mod

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

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/google/go-cmp v0.5.6
@@ -11,3 +11,25 @@ require (
1111
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734
1212
github.com/zclconf/go-cty v1.9.0
1313
)
14+
15+
require (
16+
github.com/agext/levenshtein v1.2.1 // indirect
17+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
18+
github.com/fatih/color v1.7.0 // indirect
19+
github.com/golang/protobuf v1.3.4 // indirect
20+
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
21+
github.com/mattn/go-colorable v0.1.4 // indirect
22+
github.com/mattn/go-isatty v0.0.10 // indirect
23+
github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77 // indirect
24+
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect
25+
github.com/oklog/run v1.0.0 // indirect
26+
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
27+
github.com/vmihailenco/tagparser v0.1.1 // indirect
28+
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
29+
golang.org/x/sys v0.0.0-20191008105621-543471e840be // indirect
30+
golang.org/x/text v0.3.5 // indirect
31+
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
32+
google.golang.org/appengine v1.6.5 // indirect
33+
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect
34+
google.golang.org/grpc v1.27.1 // indirect
35+
)

0 commit comments

Comments
 (0)