Skip to content

Commit fb6311a

Browse files
authored
Merge pull request #13 from microsoft/preview
Preview - v1.3.3
2 parents 51d29ff + 97b3693 commit fb6311a

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

lib/action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function run() {
5656
args.push(languages);
5757
}
5858
args.push('--github');
59-
yield client.run(args);
59+
yield client.run(args, 'microsoft/security-devops-action');
6060
});
6161
}
6262
run().catch((error) => core.setFailed(error));

node_modules/.package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/microsoft-security-devops-actions-toolkit/msdo-client.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/microsoft-security-devops-actions-toolkit/package.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microsoft-security-devops-action",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "Node dependencies for the microsoft/security-devops-action.",
55
"scripts": {
66
"test": "mocha"
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"@actions/core": "1.2.6",
1212
"@actions/exec": "1.0.4",
13-
"microsoft-security-devops-actions-toolkit": "1.3.0"
13+
"microsoft-security-devops-actions-toolkit": "1.3.1"
1414
},
1515
"devDependencies": {
1616
"@types/mocha": "^2.2.44",

src/action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async function run() {
3535

3636
args.push('--github');
3737

38-
await client.run(args);
38+
await client.run(args, 'microsoft/security-devops-action');
3939
}
4040

4141
run().catch((error) => core.setFailed(error));

0 commit comments

Comments
 (0)