generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch @azure/logger to fix CodeQL warning
Logging of the AZURE_LOG_LEVEL env var value is considered a security issue, since any environment variable value could contain sensitive information. In this case, logging the value is not really necessary.
- Loading branch information
Showing
5 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Patch removes logging of the AZURE_LOG_LEVEL env var value | ||
# This logging triggers a high severity Warning from CodeQL, which can prevent organizational users from adopting the action. | ||
|
||
diff --git a/node_modules/@azure/logger/dist-esm/src/index.js b/node_modules/@azure/logger/dist-esm/src/index.js | ||
index 116b59e..cf87f3c 100644 | ||
--- a/node_modules/@azure/logger/dist-esm/src/index.js | ||
+++ b/node_modules/@azure/logger/dist-esm/src/index.js | ||
@@ -20,7 +20,7 @@ if (logLevelFromEnv) { | ||
setLogLevel(logLevelFromEnv); | ||
} | ||
else { | ||
- console.error(`AZURE_LOG_LEVEL set to unknown log level '${logLevelFromEnv}'; logging is not enabled. Acceptable values: ${AZURE_LOG_LEVELS.join(", ")}.`); | ||
+ console.error(`AZURE_LOG_LEVEL set to unknown log level; logging is not enabled. Acceptable values: ${AZURE_LOG_LEVELS.join(", ")}.`); | ||
} | ||
} | ||
/** | ||
diff --git a/node_modules/@azure/logger/dist/index.js b/node_modules/@azure/logger/dist/index.js | ||
index 327fbdb..4432d73 100644 | ||
--- a/node_modules/@azure/logger/dist/index.js | ||
+++ b/node_modules/@azure/logger/dist/index.js | ||
@@ -122,7 +122,7 @@ if (logLevelFromEnv) { | ||
setLogLevel(logLevelFromEnv); | ||
} | ||
else { | ||
- console.error(`AZURE_LOG_LEVEL set to unknown log level '${logLevelFromEnv}'; logging is not enabled. Acceptable values: ${AZURE_LOG_LEVELS.join(", ")}.`); | ||
+ console.error(`AZURE_LOG_LEVEL set to unknown log level; logging is not enabled. Acceptable values: ${AZURE_LOG_LEVELS.join(", ")}.`); | ||
} | ||
} | ||
/** |