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
38 changed files with 67019 additions and 19597 deletions

View File

@ -74,7 +74,7 @@ export async function run() {
cacheDependencyPath
);
} catch (error) {
core.warning(`Restore cache failed: ${error.message}`);
core.warning(`Restore cache failed: ${(error as Error).message}`);
}
}
@ -92,7 +92,7 @@ export async function run() {
core.info(goEnv);
core.endGroup();
} catch (error) {
core.setFailed(error.message);
core.setFailed((error as Error).message);
}
}