From 825e1073b8f5defba83e782d6ddb07de6e254998 Mon Sep 17 00:00:00 2001 From: Tycho Andersen Date: Wed, 16 Mar 2022 12:16:20 -0600 Subject: [PATCH] ci: add go 1.18 to CI note that there *is* motivation for keeping golang 1.17 around: golangci-lint only runs certain linters with golang 1.18 right now, because generics broke the AST apparently. So, let's keep 1.17 around and make sure that those linters still run, since eventually they'll be re-enabled and this way we won't have to go through and fix everything when they are. Signed-off-by: Tycho Andersen --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8470f7720..b30000959 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,7 +12,7 @@ jobs: name: "golang ${{ matrix.go-version }} privilege ${{ matrix.privilege-level }}" strategy: matrix: - go-version: [1.16.x, 1.17.x] + go-version: [1.17.x, 1.18.x] privilege-level: [priv, unpriv] steps: - uses: actions/checkout@v2