From 5d7112f0d7af79213fbfdc6709465becb85b3b24 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Tue, 25 Jan 2022 10:04:25 -0600 Subject: [PATCH] ci: Pin the golangci-lint version to prevent breakage (#62) * ci: Pin the golangci-lint version to prevent breakage The main branch broke because golangci-lint released a new version. This pins it, so hopefully it never happens again! * Fix version string --- .github/workflows/coder.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index b8b9f5c59c..8467dbe81b 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -36,7 +36,7 @@ jobs: - name: golangci-lint uses: golangci/golangci-lint-action@v2 with: - version: latest + version: v1.43.0 style-lint-typescript: name: "style/lint/typescript"