From a473e2e573d6c4502dcd4b78f3bdd07e4b77764c Mon Sep 17 00:00:00 2001 From: Edward McFarlane <3036610+emcfarlane@users.noreply.github.com> Date: Tue, 3 Oct 2023 06:40:27 +0100 Subject: [PATCH] Drop actions cache for setup-go (#12) --- .github/workflows/ci.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e2196c4..8ddd15e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,12 +25,6 @@ jobs: uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - name: Cache - uses: actions/cache@v3 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-validate-go-ci-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-validate-go-ci- - name: Test run: make test - name: Lint