From 9f120664a3bfc4d56814760004aac498c7965f28 Mon Sep 17 00:00:00 2001 From: "M. J. Fromberger" Date: Sat, 11 Jun 2022 18:09:11 -0700 Subject: [PATCH] Fix CI configuration. (#59) --- .github/workflows/go-presubmit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go-presubmit.yml b/.github/workflows/go-presubmit.yml index 4b9e647..682283d 100644 --- a/.github/workflows/go-presubmit.yml +++ b/.github/workflows/go-presubmit.yml @@ -13,13 +13,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: ['1.13', '1.14', '1.15', '1.16', '1.17'] + go-version: ['1.13', '1.14', '1.15', '1.16', '1.17', '1.18'] steps: - name: Install Go ${{ matrix.go-version }} uses: actions/setup-go@v1 with: go-version: ${{ matrix.go-version }} - uses: actions/checkout@v2 - - uses: creachadair/go-presubmit-action@default + - uses: creachadair/go-presubmit-action@v1 with: staticcheck-version: "2020.1.6"