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 7
7
- " **.go"
8
8
- " scripts/errcheck_excludes.txt"
9
9
- " .github/workflows/golangci-lint.yml"
10
+ - " .golangci.yml"
10
11
pull_request :
11
12
paths :
12
13
- " go.sum"
13
14
- " go.mod"
14
15
- " **.go"
15
16
- " scripts/errcheck_excludes.txt"
16
17
- " .github/workflows/golangci-lint.yml"
18
+ - " .golangci.yml"
17
19
18
20
jobs :
19
21
golangci :
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ endif
160
160
update-go-deps:
161
161
@echo ">> updating Go dependencies"
162
162
@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; \
164
164
done
165
165
GO111MODULE=$(GO111MODULE) $(GO) mod tidy
166
166
ifneq (,$(wildcard vendor))
You can’t perform that action at this time.
0 commit comments