aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-09-10 19:51:29 +0200
committerGitHub <noreply@github.com>2022-09-10 19:51:29 +0200
commit896d7cb1b03d449f399bd835693188c3910866a5 (patch)
tree9feec74ad7beea92ca4d0d5572f3b980f54319ae /.github
parentd0db3b121bb9b0b8ec007c3a12cec015dc7c77d7 (diff)
parent8bd98454def2e76f30aabcd1ac284bbbf48d8ad5 (diff)
downloadgit-bug-896d7cb1b03d449f399bd835693188c3910866a5.tar.gz
Merge pull request #868 from MichaelMure/feat-security-checks
feat: check security via `make` recipe and Github check
Diffstat (limited to '.github')
-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