Skip to content

Commit 8ae1e26

Browse files
author
Alvaro Muñoz
committed
fix(action): qls reference
1 parent 76f245b commit 8ae1e26

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/action/dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28707,7 +28707,7 @@ async function codeqlDatabaseAnalyze(codeql, database_path) {
2870728707
codeql_output,
2870828708
];
2870928709
// remote pack or local pack
28710-
if (codeql.pack.startsWith("GitHubSecurityLab/")) {
28710+
if (codeql.pack.startsWith("githubsecuritylab/")) {
2871128711
var suite = codeql.pack + ":" + codeql.suite;
2871228712
}
2871328713
else {
@@ -28779,7 +28779,7 @@ async function run() {
2877928779
throw new Error("CodeQL Yaml extractor not installed");
2878028780
}
2878128781
// download pack
28782-
core.info(`Downloading CodeQL IaC pack '${codeql.pack}'`);
28782+
core.info(`Downloading CodeQL Actions pack '${codeql.pack}'`);
2878328783
var pack_downloaded = await cql.downloadPack(codeql);
2878428784
if (pack_downloaded === false) {
2878528785
var action_path = path.resolve(path.join(__dirname, "..", "..", ".."));

.github/action/src/codeql.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export async function codeqlDatabaseAnalyze(
148148
];
149149

150150
// remote pack or local pack
151-
if (codeql.pack.startsWith("GitHubSecurityLab/")) {
151+
if (codeql.pack.startsWith("githubsecuritylab/")) {
152152
var suite = codeql.pack + ":" + codeql.suite;
153153
} else {
154154
// assume path

.github/action/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export async function run(): Promise<void> {
2929
}
3030

3131
// download pack
32-
core.info(`Downloading CodeQL IaC pack '${codeql.pack}'`);
32+
core.info(`Downloading CodeQL Actions pack '${codeql.pack}'`);
3333
var pack_downloaded = await cql.downloadPack(codeql);
3434

3535
if (pack_downloaded === false) {

0 commit comments

Comments
 (0)