File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ inputs:
2020 description : ' A block of Markdown that will be appended to any PR comments posted'
2121 required : false
2222 eval-indirect-dependencies :
23+ deprecationMessage : ' This input is deprecated. Set this option in the configuration'
2324 description : ' Show vulnerabilities found in transitive dependencies'
2425 required : false
2526 default : false
9192 debug : ' ${{ inputs.debug }}'
9293 token : ' ${{ inputs.token || github.token }}'
9394 footer : ' ${{ inputs.footer }}'
94- eval-indirect-dependencies : ' ${{ inputs.eval-indirect-dependencies }}'
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ async function runAnalysis() {
4040
4141 info ( 'Analyzing ' + target )
4242 telemetryCollector . addField ( 'tools' , 'sca' )
43- const indirectDeps = getInput ( 'eval-indirect-dependencies' )
4443 const toUpload : string [ ] = [ ]
4544
4645 await downloadKeys ( )
@@ -59,9 +58,6 @@ async function runAnalysis() {
5958 '--keyring' ,
6059 trustedKeys ,
6160 ]
62- if ( indirectDeps . toLowerCase ( ) === 'false' ) {
63- args . push ( '--eval-direct-only' )
64- }
6561 if ( debug ( ) ) {
6662 args . push ( '--debug' )
6763 }
You can’t perform that action at this time.
0 commit comments