Update dependencies for node20 (#445)

This commit is contained in:
Dmitry Shibanov 2023-12-05 17:50:42 +01:00 committed by GitHub
parent bfd2fb341f
commit 0c52d547c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 67019 additions and 19597 deletions

View file

@ -114,9 +114,9 @@ export async function getGo(
`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 Go');
}
@ -160,7 +160,7 @@ async function resolveVersionFromManifest(
return info?.resolvedVersion;
} catch (err) {
core.info('Unable to resolve a version from the manifest...');
core.debug(err.message);
core.debug((err as Error).message);
}
}