From d9c08be77fe3b046348233b6d9571d9ec16e8d55 Mon Sep 17 00:00:00 2001 From: hoshinotsuyoshi Date: Thu, 5 Oct 2023 03:37:31 +0900 Subject: [PATCH] Improve downloading log message Regarding GitHub Actions log output, the dot was recognized as part of the URL. --- src/setup-codeql.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup-codeql.ts b/src/setup-codeql.ts index de537a2629..ebf8894465 100644 --- a/src/setup-codeql.ts +++ b/src/setup-codeql.ts @@ -553,7 +553,7 @@ export async function downloadCodeQL( logger.debug("Downloading CodeQL tools without an authorization token."); } logger.info( - `Downloading CodeQL tools from ${codeqlURL}. This may take a while.`, + `Downloading CodeQL tools from ${codeqlURL} . This may take a while.`, ); const dest = path.join(tempDir, uuidV4());