From 11ce1b2bfd5b2da4ae96b10ebde2895ff807564b Mon Sep 17 00:00:00 2001 From: Edward McFarlane <3036610+emcfarlane@users.noreply.github.com> Date: Mon, 2 Oct 2023 19:25:43 +0100 Subject: [PATCH] Drop actions cache for setup-go (#137) --- .github/workflows/ci.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 006576e..b0fe59a 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 }}-connect-opentelemetry-go-ci-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-connect-opentelemetry-go-ci- - name: Test run: make test - name: Lint