From 6c510a666832163a5d02587bda8be970d5e29b8c Mon Sep 17 00:00:00 2001 From: Michael Tharp Date: Mon, 5 Feb 2024 16:45:32 -0500 Subject: [PATCH] ci: remove cache action since setup-go takes care of it --- .github/workflows/build.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d4786a..3f222c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,15 +10,6 @@ jobs: uses: actions/setup-go@v5 with: go-version: "1.21" - - name: Restore cache - uses: actions/cache@v4 - with: - path: | - ~/.cache/go-build - ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - name: Build clients run: | @@ -57,15 +48,6 @@ jobs: uses: actions/setup-go@v5 with: go-version: "1.21" - - name: Restore cache - uses: actions/cache@v4 - with: - path: | - ~/Library/Caches/go-build - ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - name: Build client run: | @@ -98,15 +80,6 @@ jobs: uses: actions/setup-go@v5 with: go-version: "1.21" - - name: Restore cache - uses: actions/cache@v4 - with: - path: | - %LocalAppData%\go-build - ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - name: Build client run: |