From 4c70a7ba9761fd3100db23a579e6a302f091879e Mon Sep 17 00:00:00 2001 From: Steven Hartland Date: Fri, 25 Nov 2022 21:34:48 +0000 Subject: [PATCH] ci: enable golangci-lint cache (#451) Remove skip-cache: true and restore skip-pkg-cache: true and skip-build-cache: true so that we still cache golangci-lint results which skip-cache: true disables. --- .github/workflows/test-lint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-lint.yml b/.github/workflows/test-lint.yml index 1b18d3d6..8c755e23 100644 --- a/.github/workflows/test-lint.yml +++ b/.github/workflows/test-lint.yml @@ -32,7 +32,8 @@ jobs: with: version: ${{ matrix.golangci }} args: "--out-${NO_FUTURE}format colored-line-number" - skip-cache: true + skip-pkg-cache: true + skip-build-cache: true - name: Go Build run: go build ./...