aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Moyer <smoyer1@selesy.com>2022-09-08 17:28:59 -0400
committerSteve Moyer <smoyer1@selesy.com>2022-09-08 17:28:59 -0400
commit3087cdc013cf002c6644f2c3b8cc13d748c80783 (patch)
treeaaa9ca79e1b8e2c21eabae286c7f02987c03ed3c
parentec7395589d66b0014506a7ff2908dc206ec18f89 (diff)
downloadgit-bug-3087cdc013cf002c6644f2c3b8cc13d748c80783.tar.gz
feat: run security checks during Go workflow
-rw-r--r--.github/workflows/go.yml3
1 files changed, 3 insertions, 0 deletions
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