Skip to content

Commit

Permalink
update k8s.io/client-go to v0.29.8
Browse files Browse the repository at this point in the history
  • Loading branch information
name212 committed Sep 27, 2024
1 parent b2bced4 commit 74aca8d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@ jobs:
- name: Check out code
uses: actions/checkout@v3

- name: Restore Go modules
id: go-modules-cache
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
key: ${{ runner.os }}-gomod-${{ hashFiles('go.mod', 'go.sum') }}
restore-keys: |
${{ runner.os }}-gomod-
- name: Download Go modules
if: steps.go-modules-cache.outputs.cache-hit != 'true'
run: |
go mod download
echo -n "Go modules unpacked size is: " && du -sh $HOME/go/pkg/mod
- name: Run golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b . v1.54.2
Expand Down

0 comments on commit 74aca8d

Please sign in to comment.