File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
.github/actions/govulncheck Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 11name : ' golang-govulncheck-action'
22description : ' Run govulncheck'
33inputs :
4- go-version-input : # version of Go to use for govulncheck
4+ go-version-input : # version of Go to use for govulncheck
55 description : ' Version of Go to use for govulncheck'
66 required : false
77 default : ' stable'
@@ -13,6 +13,10 @@ inputs:
1313 description : ' Used to specify whether Go caching is needed. Set to true, if you would like to enable caching.'
1414 required : false
1515 default : true
16+ cache-dependency-path :
17+ description : ' Used to specify the path to a dependency file for monorepos - go.sum'
18+ required : false
19+ default : ' '
1620 go-package :
1721 description : ' Go Package to scan with govulncheck'
1822 required : false
4751 check-latest : ${{ inputs.check-latest }}
4852 go-version-file : ${{ inputs.go-version-file }}
4953 cache : ${{ inputs.cache }}
54+ cache-dependency-path : ${{ inputs.cache-dependency-path }}
5055 - name : Install govulncheck
5156 run : go install golang.org/x/vuln/cmd/govulncheck@latest
5257 shell : bash
You can’t perform that action at this time.
0 commit comments