From 3087cdc013cf002c6644f2c3b8cc13d748c80783 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Thu, 8 Sep 2022 17:28:59 -0400 Subject: feat: run security checks during Go workflow --- .github/workflows/go.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7846a1d6..8d41852c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -53,3 +53,6 @@ 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 -- cgit