diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b9716e5..71c3959 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,6 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: Run test run: go test ./... diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8d340aa..80a5521 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: Run linters run: | export PATH=$PATH:$(go env GOPATH)/bin diff --git a/README.md b/README.md index 3247bf5..0829ca6 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ NOTE: This plugin system is experimental. This means that API compatibility is f ## Requirements - TFLint v0.35+ -- Go v1.18 +- Go v1.19 ## Usage diff --git a/go.mod b/go.mod index 5c56fe6..bb9838a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/terraform-linters/tflint-plugin-sdk -go 1.18 +go 1.19 require ( github.com/google/go-cmp v0.5.8