Skip to content

Commit 3455736

Browse files
remove URL encoding
1 parent 546d5a8 commit 3455736

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/util.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export async function getAnalysisKey(): Promise<string> {
193193
const workflowPath = await getWorkflowPath();
194194
const jobName = getRequiredEnvParam('GITHUB_JOB');
195195

196-
analysisKey = encodeURI(workflowPath) + ':' + encodeURI(jobName);
196+
analysisKey = workflowPath + ':' + jobName;
197197
core.exportVariable(sharedEnv.CODEQL_ACTION_ANALYSIS_KEY, analysisKey);
198198
return analysisKey;
199199
}

0 commit comments

Comments
 (0)