chore: reconcile type errors

This commit is contained in:
Branden Cash
2024-01-24 13:10:36 -07:00
parent f5430bd5fe
commit 98c2bd3f26
3 changed files with 48 additions and 15 deletions

View File

@ -8,7 +8,7 @@ async function run() {
await installer.getMaven(version);
}
} catch (error) {
core.setFailed(error.message);
core.setFailed((error as Error).message);
}
}