From 2b47003f72c770a9c12ccbba719f7367d3cacdb2 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Mon, 26 Sep 2022 06:14:38 -0400 Subject: fix(884): scan PRs for insecure practices References #884 --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 8d41852c..776165d5 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -54,5 +54,5 @@ jobs: - name: Check Code Formatting run: find . -name "*.go" | while read line; do [ -z "$(gofmt -d "$line" | head)" ] || exit 1; done - - name: Check Security (vulnerable dependencies and insecure practices) - run: make secure + - name: Check Security (insecure practices) + run: make secure-practices -- cgit