Skip to content

Commit e4f9904

Browse files
committed
Extract govulncheck to another file
1 parent da3cd4d commit e4f9904

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ BUILD_CTX ::= .
44

55
include ./common.mk
66
include ./scripts/make/go-mod-outdated.mk
7+
include ./scripts/make/govulncheck.mk
78

89
.PHONY: authgearonce-start
910
authgearonce-start: GO_RUN_TAGS += authgearonce

custombuild/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ BUILD_CTX ::= ../
44

55
include ../common.mk
66
include ../scripts/make/go-mod-outdated.mk
7+
include ../scripts/make/govulncheck.mk

e2e/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
include ../scripts/make/go-mod-outdated.mk
2+
include ../scripts/make/govulncheck.mk
23

34
.PHONY: ci
45
ci:

k6/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
include ../scripts/make/go-mod-outdated.mk
2+
include ../scripts/make/govulncheck.mk
23

34
#export K6_HTTP_DEBUG=true
45
# We cannot use K6_DURATION and K6_VUS because

scripts/make/govulncheck.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.PHONY: govulncheck
2+
govulncheck:
3+
govulncheck -show traces,version,verbose ./...

0 commit comments

Comments
 (0)