Fix typos

This commit is contained in:
Michael B. Gale
2026-02-17 13:31:01 +00:00
parent ef9cfd91a8
commit c1d6ee5477
2 changed files with 1 additions and 5 deletions
-4
View File
@@ -141,10 +141,6 @@ test("checkProxyEnvVars - logs values when variables are set", (t) => {
process.env[envVar] = envVar;
}
for (const envVar of Object.values(ProxyEnvVars)) {
process.env[envVar] = envVar;
}
checkProxyEnvVars(logger);
assertEnvVarLogMessages(t, Object.values(ProxyEnvVars), messages, true);
});
+1 -1
View File
@@ -42,7 +42,7 @@ export function checkJavaEnvVars(logger: Logger) {
}
/**
* Discovers paths to JDK directories based on JAVA_HOME and GHA-specific environement variables.
* Discovers paths to JDK directories based on JAVA_HOME and GHA-specific environment variables.
* @returns A set of JDK paths.
*/
export function discoverActionsJdks(): Set<string> {