Skip to content

Commit 82a5a4f

Browse files
committed
v1.2.3
1 parent 6e5b317 commit 82a5a4f

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

lib/msdo-client.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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:');

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/msdo-client.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)