mirror of
https://gitea.com/actions/setup-node.git
synced 2024-11-24 11:09:33 +01:00
Fix type for error messages
This commit is contained in:
parent
2a814b57e1
commit
f5115afcd8
1 changed files with 3 additions and 3 deletions
|
@ -116,9 +116,9 @@ export async function getNode(
|
|||
`Received HTTP status code ${err.httpStatusCode}. This usually indicates the rate limit has been exceeded`
|
||||
);
|
||||
} else {
|
||||
core.info(err.message);
|
||||
core.info((err as Error).message);
|
||||
}
|
||||
core.debug(err.stack);
|
||||
core.debug((err as Error).stack!);
|
||||
core.info('Falling back to download directly from Node');
|
||||
}
|
||||
|
||||
|
@ -334,7 +334,7 @@ async function resolveVersionFromManifest(
|
|||
return info?.resolvedVersion;
|
||||
} catch (err) {
|
||||
core.info('Unable to resolve version from manifest...');
|
||||
core.debug(err.message);
|
||||
core.debug((err as Error).message);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue