Skip to content

Commit 87f7291

Browse files
authored
Make security-check informational only (#36681)
Change `security-check` not break the build which is a major inconvenience as it breaks CI on all PRs. https://github.com/go-gitea/gitea/security/dependabot already provides a clean overview of outstanding security issues in dependencies and I'm using it all the time to find and update vulnerable dependencies.
1 parent 5e9b9b3 commit 87f7291

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ generate-go: $(TAGS_PREREQ)
713713

714714
.PHONY: security-check
715715
security-check:
716-
GOEXPERIMENT= go run $(GOVULNCHECK_PACKAGE) -show color ./...
716+
GOEXPERIMENT= go run $(GOVULNCHECK_PACKAGE) -show color ./... || true
717717

718718
$(EXECUTABLE): $(GO_SOURCES) $(TAGS_PREREQ)
719719
ifneq ($(and $(STATIC),$(findstring pam,$(TAGS))),)

0 commit comments

Comments
 (0)