From d735de36565d6e85c3a755c97bf7507be61145e7 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Thu, 25 Aug 2022 16:00:05 -0700 Subject: [PATCH] build: checks.yml GitHub Actions workflow doesn't need goimports installed The importscheck script now uses "go run" to run this program and so the Go toolchain will install it automatically using the version number of golang.org/x/tools specified in our go.mod file. --- .github/workflows/checks.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 56165d3934..c275445c9f 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -180,10 +180,6 @@ jobs: restore-keys: | protobuf-tools- - - name: Install CI tooling - run: | - go install golang.org/x/tools/cmd/goimports@v0.1.11 - - name: "Code consistency checks" run: | make fmtcheck importscheck generate staticcheck exhaustive protobuf