Skip to content

Commit

Permalink
ci: remove cache action since setup-go takes care of it
Browse files Browse the repository at this point in the history
  • Loading branch information
mtharp committed Feb 5, 2024
1 parent 755ce74 commit 6c510a6
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit 6c510a6

Please sign in to comment.