File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -107,10 +107,10 @@ class MsdoClient {
107107 tool . arg ( '--logger-level' ) . arg ( loggerLevel ) ;
108108 }
109109 tl . setVariable ( 'MSDO_SARIF_FILE' , sarifFile ) ;
110- args . push ( '--export-breaking-results-to-file' ) ;
111- args . push ( ` ${ sarifFile } ` ) ;
112- args . push ( '--environment-name' ) ;
113- args . push ( 'azdevops' ) ;
110+ tool . arg ( '--export-breaking-results-to-file' ) ;
111+ tool . arg ( sarifFile ) ;
112+ tool . arg ( '--environment-name' ) ;
113+ tool . arg ( 'azdevops' ) ;
114114 }
115115 catch ( error ) {
116116 error ( 'Exception occurred while initializing MSDO:' ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " microsoft-security-devops-azdevops-task-lib" ,
3- "version" : " 1.2.2 " ,
3+ "version" : " 1.2.3 " ,
44 "description" : " Microsoft Security DevOps for Azure DevOps task library." ,
55 "author" : " Microsoft Corporation" ,
66 "license" : " MIT" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " microsoft-security-devops-azdevops-task-lib" ,
3- "version" : " 1.2.2 " ,
3+ "version" : " 1.2.3 " ,
44 "description" : " Microsoft Security DevOps for Azure DevOps task library." ,
55 "author" : " Microsoft Corporation" ,
66 "license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -96,11 +96,11 @@ export class MsdoClient {
9696 // Write it as a GitHub Action variable for follow up tasks to consume
9797 tl . setVariable ( 'MSDO_SARIF_FILE' , sarifFile ) ;
9898
99- args . push ( '--export-breaking-results-to-file' ) ;
100- args . push ( ` ${ sarifFile } ` ) ;
99+ tool . arg ( '--export-breaking-results-to-file' ) ;
100+ tool . arg ( sarifFile ) ;
101101
102- args . push ( '--environment-name' ) ;
103- args . push ( 'azdevops' ) ;
102+ tool . arg ( '--environment-name' ) ;
103+ tool . arg ( 'azdevops' ) ;
104104 } catch ( error ) {
105105 error ( 'Exception occurred while initializing MSDO:' ) ;
106106 error ( error ) ;
You can’t perform that action at this time.
0 commit comments