Bump @babel/traverse from 7.15.4 to 7.23.2 (#870)

This commit is contained in:
dependabot[bot] 2023-10-19 10:40:59 +02:00 committed by GitHub
parent 2a017f350d
commit 7da2a7eb0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 4895 additions and 5093 deletions

View file

@ -100,9 +100,9 @@ export default class OfficialBuilds extends BaseDistribution {
`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 ?? 'empty stack');
core.info('Falling back to download directly from Node');
}
@ -214,7 +214,7 @@ export default class OfficialBuilds extends BaseDistribution {
return info?.resolvedVersion;
} catch (err) {
core.info('Unable to resolve version from manifest...');
core.debug(err.message);
core.debug((err as Error).message);
}
}