mirror of
https://github.com/github/codeql-action
synced 2026-05-23 20:00:54 +03:00
URL encode the key
This commit is contained in:
Generated
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
+1
-1
@@ -193,7 +193,7 @@ export async function getAnalysisKey(): Promise<string> {
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user