Skip to content

Commit

Permalink
Merge pull request #3822 from kolyshkin/gha-rm-cache
Browse files Browse the repository at this point in the history
ci/gha: disable double caching
  • Loading branch information
kolyshkin committed May 16, 2023
2 parents 57952fe + 62cc13e commit b492357
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: "${{ env.GO_VERSION }}"
cache: false # golangci-lint-action does its own caching
- name: install deps
run: |
sudo apt -q update
Expand Down Expand Up @@ -108,14 +109,6 @@ jobs:
uses: actions/setup-go@v4
with:
go-version: "${{ env.GO_VERSION }}"
- name: cache go mod and $GOCACHE
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go.sum-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go.sum-
- name: verify deps
run: make verify-dependencies

Expand Down

0 comments on commit b492357

Please sign in to comment.