From e4e324705e5f582ee4861cbf4f820c94f0e57449 Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Tue, 27 Jan 2026 14:13:28 +0000 Subject: [PATCH] Update JS --- lib/start-proxy-action.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/start-proxy-action.js b/lib/start-proxy-action.js index 56df2e380c..e0aca4c39a 100644 --- a/lib/start-proxy-action.js +++ b/lib/start-proxy-action.js @@ -103548,7 +103548,7 @@ function getCredentials(logger, registrySecrets, registriesCredentials, language "Invalid credentials - fields must contain only printable characters" ); } - if (!isDefined(e.username) && (isDefined(e.password) && isPAT(e.password) || isDefined(e.token) && isPAT(e.token))) { + if (!isDefined2(e.username) && (isDefined2(e.password) && isPAT(e.password) || isDefined2(e.token) && isPAT(e.token))) { logger.warning( `A ${e.type} private registry is configured for ${e.host || e.url} using a GitHub Personal Access Token (PAT), but no username was provided. This may not work correctly. When configuring a private registry using a PAT, select "Username and password" and enter the username of the user who generated the PAT.` );