Fix new lints

This commit is contained in:
svartalf 2020-06-06 12:16:01 +03:00
parent b7b99ee70c
commit eef3dff983
2 changed files with 3 additions and 3 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

View File

@ -32,8 +32,8 @@ async function main(): Promise<void> {
try { try {
await run(actionInput); await run(actionInput);
} catch (error) { } catch (error) {
core.setFailed(error.message); core.setFailed((<Error>error).message);
} }
} }
main(); void main();