Skip to content

Commit

Permalink
set error: any
Browse files Browse the repository at this point in the history
  • Loading branch information
skaji committed Aug 18, 2022
1 parent 2fb8033 commit 3481c1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Expand Up @@ -17,7 +17,7 @@ export async function run(): Promise<void> {
core.startGroup("raku -V");
await exec.exec("raku", ["-V"]);
core.endGroup();
} catch (error) {
} catch (error: any) {
core.setFailed(error.message);
}
}

0 comments on commit 3481c1d

Please sign in to comment.