File tree Expand file tree Collapse file tree 4 files changed +1
-13
lines changed
Expand file tree Collapse file tree 4 files changed +1
-13
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
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 : ' Deprecated in favor of SCA configurations'
2324 description : ' Show vulnerabilities found in transitive dependencies'
2425 required : false
2526 default : false
9596 debug : ' ${{ inputs.debug }}'
9697 token : ' ${{ inputs.token || github.token }}'
9798 footer : ' ${{ inputs.footer }}'
98- eval-indirect-dependencies : ' ${{ inputs.eval-indirect-dependencies }}'
9999 artifact-prefix : ' ${{ inputs.artifact-prefix }}'
Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ async function runAnalysis() {
4242
4343 info ( 'Analyzing ' + target )
4444 telemetryCollector . addField ( 'tools' , 'sca' )
45- const indirectDeps = getInput ( 'eval-indirect-dependencies' )
4645 const toUpload : string [ ] = [ ]
4746
4847 await downloadKeys ( )
@@ -63,9 +62,6 @@ async function runAnalysis() {
6362 if ( target === 'push' ) {
6463 args . push ( '--save-results' )
6564 }
66- if ( indirectDeps . toLowerCase ( ) === 'false' ) {
67- args . push ( '--eval-direct-only' )
68- }
6965 if ( debug ( ) ) {
7066 args . push ( '--debug' )
7167 }
You can’t perform that action at this time.
0 commit comments