From 13967c68c841d3f3038eaba6e140008342be24a1 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Tue, 25 Jan 2022 15:55:36 +0000 Subject: [PATCH 1/2] 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! --- .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 b8b9f5c59cb8e..f7f1100b90258 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: 1.43.0 style-lint-typescript: name: "style/lint/typescript" From 248e8601ad5390a267e85a1cc88c0377490c9857 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Tue, 25 Jan 2022 15:56:33 +0000 Subject: [PATCH 2/2] 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 f7f1100b90258..8467dbe81ba4d 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: 1.43.0 + version: v1.43.0 style-lint-typescript: name: "style/lint/typescript"