From 85b3528b1568273ad8ea7ca48b1cf92821595d92 Mon Sep 17 00:00:00 2001 From: DanStough Date: Wed, 15 May 2024 16:25:17 -0400 Subject: [PATCH] build: update gha and fix cache error --- .github/workflows/bin-ci.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/bin-ci.yml b/.github/workflows/bin-ci.yml index a1a38cb..1222140 100644 --- a/.github/workflows/bin-ci.yml +++ b/.github/workflows/bin-ci.yml @@ -33,14 +33,13 @@ jobs: with: go-version: ${{ needs.get-go-version.outputs.go-version }} - name: golangci-lint - uses: golangci/golangci-lint-action@38e1018663fa5173f3968ea0777460d3de38f256 # v5.3.0 + uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.1 with: version: v1.54.2 args: | --verbose only-new-issues: false - skip-pkg-cache: true - skip-build-cache: true + skip-cache: true - name: lint-consul-retry shell: bash run: | @@ -69,16 +68,6 @@ jobs: - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 with: go-version: ${{ needs.get-go-version.outputs.go-version }} - - - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 - with: - path: | - ~/.cache/go-build - ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - name: Install Consul shell: bash run: |