File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 77 - " **.go"
88 - " scripts/errcheck_excludes.txt"
99 - " .github/workflows/golangci-lint.yml"
10+ - " .golangci.yml"
1011 pull_request :
1112 paths :
1213 - " go.sum"
1314 - " go.mod"
1415 - " **.go"
1516 - " scripts/errcheck_excludes.txt"
1617 - " .github/workflows/golangci-lint.yml"
18+ - " .golangci.yml"
1719
1820jobs :
1921 golangci :
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ endif
160160update-go-deps:
161161 @echo ">> updating Go dependencies"
162162 @for m in $$($(GO) list -mod=readonly -m -f '{{ if and (not .Indirect) (not .Main)}}{{.Path}}{{end}}' all); do \
163- $(GO) get $$m; \
163+ $(GO) get -d $$m; \
164164 done
165165 GO111MODULE=$(GO111MODULE) $(GO) mod tidy
166166ifneq (,$(wildcard vendor))
You can’t perform that action at this time.
0 commit comments