remove CODEQL_ACTION_DATABASE_DIR

This commit is contained in:
Robert 2020-08-07 16:08:05 +01:00
parent 8608105240
commit 5b35de62bd
13 changed files with 23 additions and 16 deletions

7
lib/util.js generated
View file

@ -356,4 +356,11 @@ function getThreadsFlag() {
return `--threads=${numThreads}`;
}
exports.getThreadsFlag = getThreadsFlag;
/**
* Get the directory where CodeQL databases should be placed.
*/
function getCodeQLDatabasesDir() {
return path.resolve(getRequiredEnvParam('RUNNER_TEMP'), 'codeql_databases');
}
exports.getCodeQLDatabasesDir = getCodeQLDatabasesDir;
//# sourceMappingURL=util.js.map