Skip to content

Commit d64ec09

Browse files
authored
Update common Prometheus files (#494)
Signed-off-by: prombot <[email protected]>
1 parent dede9e9 commit d64ec09

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/golangci-lint.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ on:
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

1820
jobs:
1921
golangci:

Makefile.common

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ endif
160160
update-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
166166
ifneq (,$(wildcard vendor))

0 commit comments

Comments
 (0)