Merge pull request #911 from crazy-max/ensure-redact
ensure passwords are redacted with registry-authdependabot/npm_and_yarn/smithy/config-resolver-4.4.5
commit
916386b000
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -39,6 +39,9 @@ export async function main(): Promise<void> {
|
||||||
} else {
|
} else {
|
||||||
registries.push(auth.registry);
|
registries.push(auth.registry);
|
||||||
}
|
}
|
||||||
|
if (auth.password) {
|
||||||
|
core.setSecret(auth.password);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
stateHelper.setRegistries(registries.filter((value, index, self) => self.indexOf(value) === index));
|
stateHelper.setRegistries(registries.filter((value, index, self) => self.indexOf(value) === index));
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue