diff options
author | Steve Moyer <smoyer1@selesy.com> | 2022-10-01 15:07:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-01 15:07:26 -0400 |
commit | 917a19756ba9a7f60f23f6687d876fd87a6ba701 (patch) | |
tree | c817436e32709f6d1192369c5ad9d515f37db8c8 | |
parent | ef08155116080124789cc3cd76cad29c01e10e37 (diff) | |
parent | 2b47003f72c770a9c12ccbba719f7367d3cacdb2 (diff) | |
download | git-bug-917a19756ba9a7f60f23f6687d876fd87a6ba701.tar.gz |
Merge pull request #889 from MichaelMure/fix-884-pr-workflow
fix(884): scan PRs for insecure practices
-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 |