add UpdatePCGVsphere API #66
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GoSecPRValidation | |
on: [pull_request] | |
concurrency: | |
group: gosec-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
gosec-pr-scan: | |
runs-on: ubuntu-latest | |
container: | |
image: gcr.io/spectro-dev-public/bulwark/gosec:latest | |
env: | |
REPO: ${{ github.event.repository.name }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: gosec-scan | |
shell: sh | |
env: | |
BRANCH: ${{ github.head_ref || github.ref_name }} | |
GO111MODULE: on | |
run: /workspace/bulwark -name CodeSASTGoSec -verbose -target $REPO -tags "branch:$BRANCH,rules:-G101" | |
- name: check-result | |
shell: sh | |
run: | | |
resultPath=$REPO-result.json | |
issues=$(cat $resultPath | jq -r '.Stats.found') | |
echo "Found ${issues} issues" | |
echo "Issues by Rule ID" | |
jq -r '.Issues | group_by (.rule_id)[] | {rule: .[0].rule_id, count: length}' $resultPath | |
if [ "$issues" -gt 0 ]; then | |
echo "GoSec SAST scan failed with below findings..." | |
cat $resultPath | |
exit 1 | |
else | |
echo "GoSec SAST scan passed" | |
fi |