Bump typescript, fix build errors around catch blocks.

This commit is contained in:
Nick Cipollo
2021-10-03 17:21:27 -04:00
parent 4531373c80
commit 821cbcc349
6 changed files with 8 additions and 8 deletions

View File

@@ -164,7 +164,7 @@ class CoreInputs {
return core.getInput('omitNameDuringUpdate') == 'true';
}
stringFromFile(path) {
return fs_1.readFileSync(path, 'utf-8');
return (0, fs_1.readFileSync)(path, 'utf-8');
}
}
exports.CoreInputs = CoreInputs;