Skip to content

Commit 79d8e4a

Browse files
committed
fix lint errors
1 parent 0ece1d1 commit 79d8e4a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/util.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -666,8 +666,7 @@ export async function getMlPoweredJsQueriesPack(
666666
): Promise<string> {
667667
if (await codeQlVersionAbove(codeQL, "2.9.3")) {
668668
return `${ML_POWERED_JS_QUERIES_PACK_NAME}@~0.3.0`;
669-
}
670-
else if (await codeQlVersionAbove(codeQL, "2.8.4")) {
669+
} else if (await codeQlVersionAbove(codeQL, "2.8.4")) {
671670
return `${ML_POWERED_JS_QUERIES_PACK_NAME}@~0.2.0`;
672671
}
673672
return `${ML_POWERED_JS_QUERIES_PACK_NAME}@~0.1.0`;
@@ -743,8 +742,8 @@ export async function checkActionVersion(version: string) {
743742
) {
744743
core.warning(
745744
"CodeQL Action v1 will be deprecated on December 7th, 2022. Please upgrade to v2. For " +
746-
"more information, see " +
747-
"https://github.blog/changelog/2022-04-27-code-scanning-deprecation-of-codeql-action-v1/"
745+
"more information, see " +
746+
"https://github.blog/changelog/2022-04-27-code-scanning-deprecation-of-codeql-action-v1/"
748747
);
749748
}
750749
}

0 commit comments

Comments
 (0)