Assign error message to string

This commit is contained in:
Jill Regan
2026-02-20 09:26:38 -05:00
parent cb3e4f29eb
commit d4fc305bfa

View File

@@ -34,7 +34,7 @@ const loadSecretsAction = async () => {
if (error instanceof Error) {
message = error.message;
} else {
String(error);
message = String(error);
}
core.setFailed(message);
}