URL encode the key

This commit is contained in:
Robert Brignull 2020-04-30 16:04:19 +01:00
parent 43de3a9949
commit 546d5a8843
2 changed files with 2 additions and 2 deletions

2
lib/util.js generated
View file

@ -185,7 +185,7 @@ async function getAnalysisKey() {
}
const workflowPath = await getWorkflowPath();
const jobName = getRequiredEnvParam('GITHUB_JOB');
analysisKey = workflowPath + ' - ' + jobName;
analysisKey = encodeURI(workflowPath) + ':' + encodeURI(jobName);
core.exportVariable(sharedEnv.CODEQL_ACTION_ANALYSIS_KEY, analysisKey);
return analysisKey;
}