Public Access
1
0
mirror of https://github.com/docker/login-action.git synced 2026-04-20 23:46:34 +03:00

Merge pull request #911 from crazy-max/ensure-redact

ensure passwords are redacted with registry-auth
This commit is contained in:
CrazyMax
2026-01-07 09:35:51 +01:00
committed by GitHub
3 changed files with 5 additions and 2 deletions
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long
+3
View File
@@ -39,6 +39,9 @@ export async function main(): Promise<void> {
} else {
registries.push(auth.registry);
}
if (auth.password) {
core.setSecret(auth.password);
}
}
stateHelper.setRegistries(registries.filter((value, index, self) => self.indexOf(value) === index));