From e0c88a783fa64d0385b0631cc0b1f8e46246a4e2 Mon Sep 17 00:00:00 2001 From: Pat Myron Date: Sat, 13 Aug 2022 09:28:56 -0700 Subject: [PATCH] go 1.19 (#359) gsed -i 's/1\.18/1.19/' .github/workflows/* README.md go.mod tools/go.mod --- .github/workflows/build.yml | 2 +- .github/workflows/e2e.yml | 2 +- .github/workflows/generated_code_checks.yml | 2 +- .github/workflows/goreleaser.yml | 2 +- .github/workflows/maintenance.yaml | 2 +- .github/workflows/release.yml | 2 +- README.md | 2 +- go.mod | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bf47c0cc..b233f54b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: Restore Cache uses: actions/cache@v3 with: diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 50d9d328..2fa38b5c 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -26,7 +26,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.18 + go-version: 1.19 - name: Install TFLint run: curl -sL https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash - name: Install plugin (Linux) diff --git a/.github/workflows/generated_code_checks.yml b/.github/workflows/generated_code_checks.yml index 9075c951..f1bc91c1 100644 --- a/.github/workflows/generated_code_checks.yml +++ b/.github/workflows/generated_code_checks.yml @@ -13,7 +13,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: Restore Cache uses: actions/cache@v3 with: diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index 9748e5f4..7117d6df 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: goreleaser check uses: goreleaser/goreleaser-action@v3 with: diff --git a/.github/workflows/maintenance.yaml b/.github/workflows/maintenance.yaml index 8350de3b..b220ca4d 100644 --- a/.github/workflows/maintenance.yaml +++ b/.github/workflows/maintenance.yaml @@ -13,7 +13,7 @@ jobs: submodules: true - uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - run: | go get github.com/aws/aws-sdk-go go mod tidy diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c63e3028..bf9fd1b5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.19 - name: Restore Cache uses: actions/cache@v3 with: diff --git a/README.md b/README.md index 0274c7b5..041ad62d 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This ruleset focus on possible errors and best practices about AWS resources. Ma ## Requirements - TFLint v0.35+ -- Go v1.18 +- Go v1.19 ## Installation diff --git a/go.mod b/go.mod index 5855eabb..e3335c3e 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/terraform-linters/tflint-ruleset-aws -go 1.18 +go 1.19 require ( github.com/agext/levenshtein v1.2.2 // indirect