From 8e0694283bdc2285a8326360d11335ce060b7ada Mon Sep 17 00:00:00 2001 From: kawashima Date: Mon, 16 Oct 2023 16:54:55 +0900 Subject: [PATCH] ci: delete cache in ci.yml --- .github/workflows/ci.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bcf815..019a592 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,16 +29,7 @@ jobs: uses: actions/setup-go@v4 with: go-version: 1.21 - - - name: Cache - uses: actions/cache@v3 - with: - path: | - ~/go/pkg/mod - ~/.cache/go-build - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- + cache: false - name: Unshallow run: git fetch --prune --unshallow --tags