Skip to content

Commit

Permalink
Fix golangci-lint caching
Browse files Browse the repository at this point in the history
  • Loading branch information
swiatekm committed Nov 11, 2024
1 parent 1b4a81f commit b089ffd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:
with:
path: |
/home/runner/.cache/golangci-lint
key: golangcilint-${{ hashFiles('**/go.sum') }}
key: golangcilint-${{ runner.os }}-${{ runner.arch }}-${{ steps.setup-go.outputs.go-version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
golangcilint-
golangcilint-${{ runner.os }}-${{ runner.arch }}-${{ steps.setup-go.outputs.go-version }}-
- name: Lint
run: make lint
Expand Down

0 comments on commit b089ffd

Please sign in to comment.