Skip to content

Commit c88b792

Browse files
committed
v1.3.1
1 parent 2786434 commit c88b792

File tree

5 files changed

+243
-8
lines changed

5 files changed

+243
-8
lines changed

lib/action.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ function run() {
5151
args.push(categories);
5252
}
5353
let languages = core.getInput('languages');
54-
if (!client.isNullOrWhiteSpace(categories)) {
54+
if (!client.isNullOrWhiteSpace(languages)) {
5555
args.push('--languages');
56-
args.push(categories);
56+
args.push(languages);
5757
}
5858
yield client.run(args);
5959
});

node_modules/.package-lock.json

Lines changed: 236 additions & 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: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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-action",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Node dependencies for the microsoft/security-devops-action.",
55
"scripts": {
66
"test": "mocha"

src/action.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ async function run() {
2828
}
2929

3030
let languages: string = core.getInput('languages');
31-
if (!client.isNullOrWhiteSpace(categories)) {
31+
if (!client.isNullOrWhiteSpace(languages)) {
3232
args.push('--languages');
33-
args.push(categories)
33+
args.push(languages)
3434
}
3535

3636
await client.run(args);

0 commit comments

Comments
 (0)