From ecea7587fdf7abcc950356356317e386b1d31452 Mon Sep 17 00:00:00 2001 From: Edward McFarlane Date: Mon, 2 Oct 2023 19:26:57 +0100 Subject: [PATCH] Drop actions cache for setup-go --- .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