From 13c5ec07b45eb0eb4a7791df5ead19ee4e48aa94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Mu=C3=B1oz?= Date: Fri, 16 Feb 2024 14:41:47 +0100 Subject: [PATCH] fix(actions): ql pack installation --- .github/action/dist/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/action/dist/index.js b/.github/action/dist/index.js index c482d87b4f2..b2e5a97f67f 100644 --- a/.github/action/dist/index.js +++ b/.github/action/dist/index.js @@ -28677,7 +28677,9 @@ async function downloadPack(codeql) { exports.downloadPack = downloadPack; async function installPack(codeql, dir) { try { + await runCommand(codeql, ["pack", "download"], path.join(dir, "/ql/lib")); await runCommand(codeql, ["pack", "install"], path.join(dir, "/ql/lib")); + await runCommand(codeql, ["pack", "download"], path.join(dir, "/ql/src")); await runCommand(codeql, ["pack", "install"], path.join(dir, "/ql/src")); return true; }