diff options
author | Steve Moyer <smoyer1@selesy.com> | 2022-09-26 06:14:38 -0400 |
---|---|---|
committer | Steve Moyer <smoyer1@selesy.com> | 2022-09-26 06:14:38 -0400 |
commit | 2b47003f72c770a9c12ccbba719f7367d3cacdb2 (patch) | |
tree | 54cc102c14b75928434e5bd4c99e8d79e334d636 /.github | |
parent | d92c1159f84e07bc6ddb68ba1e5159b44caceb29 (diff) | |
download | git-bug-2b47003f72c770a9c12ccbba719f7367d3cacdb2.tar.gz |
fix(884): scan PRs for insecure practices
References #884
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/go.yml | 4 |
1 files 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 |