From 40b54b458d4472c8ffcf2de528450329cea4bf98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Tue, 15 Mar 2022 20:34:54 -0700 Subject: [PATCH] Add Go 1.18 to GitHub Actions --- .github/workflows/ci.yml | 2 +- .github/workflows/linters.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f93a24e..a1fb19a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: max-parallel: 4 matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - go-version: [1.16, 1.17] + go-version: [1.16, 1.17, 1.18] steps: - name: Set up Go uses: actions/setup-go@v2 diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index b952adc7..3ec92b5e 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: - go-version: 1.16 + go-version: 1.17 - uses: golangci/golangci-lint-action@v2 with: args: --skip-dirs tests --disable errcheck --enable sqlclosecheck --enable misspell --enable gofmt --enable goimports --enable whitespace