-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(BRIDGE-94): enable govulncheck and add ignore capability
- Loading branch information
1 parent
1a81ec7
commit 2f693de
Showing
3 changed files
with
79 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eo pipefail | ||
|
||
main(){ | ||
local go_package="$1" | ||
govulncheck -json "$go_package" > vulns.json | ||
|
||
jq -r '.finding | select( (.osv != null) and (.trace[0].function != null) ) | .osv ' < vulns.json > vulns_osv_ids.txt | ||
|
||
ignore GO-2024-2887 "BRIDGE-95 net/http vulnerability" | ||
ignore GO-2024-2888 "BRIDGE-95 archive/zip vulnerability" | ||
|
||
has_vulns | ||
|
||
echo | ||
echo "No new vulnerabilities found." | ||
} | ||
|
||
ignore(){ | ||
echo "ignoring $1 fix: $2" | ||
cp vulns_osv_ids.txt tmp | ||
grep -v "$1" < tmp > vulns_osv_ids.txt || true | ||
rm tmp | ||
} | ||
|
||
has_vulns(){ | ||
has=false | ||
while read -r osv; do | ||
jq \ | ||
--arg osvid "$osv" \ | ||
'.osv | select ( .id == $osvid) | {"id":.id, "ranges": .affected[0].ranges, "import": .affected[0].ecosystem_specific.imports[0].path}' \ | ||
< vulns.json | ||
has=true | ||
done < vulns_osv_ids.txt | ||
|
||
if [ "$has" == true ]; then | ||
echo | ||
echo "Vulnerability found" | ||
return 1 | ||
fi | ||
} | ||
|
||
main |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: 'golang-govulncheck-action' | ||
description: 'Run govulncheck' | ||
inputs: | ||
go-version-input: # version of Go to use for govulncheck | ||
description: 'Version of Go to use for govulncheck' | ||
required: false | ||
go-package: | ||
description: 'Go Package to scan with govulncheck' | ||
required: false | ||
default: './...' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: ${{ inputs.go-version-input }} | ||
check-latest: false | ||
cache: false | ||
- name: Install govulncheck | ||
run: go install golang.org/x/vuln/cmd/govulncheck@latest | ||
shell: bash | ||
- name: Run govulncheck | ||
run: | | ||
chmod +x .github/actions/govulncheck.sh | ||
.github/actions/govulncheck.sh ${{ inputs.go-package }} | ||
shell: bash |
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