fix: set error type to any

This commit is contained in:
Peter Evans
2021-09-02 13:50:05 +09:00
parent ebf083452f
commit 86903dfeb9
2 changed files with 40 additions and 10 deletions

View File

@@ -39,7 +39,7 @@ async function run(): Promise<void> {
readmeContent
)
core.info('Request successful')
} catch (error) {
} catch (error: any) {
core.debug(inspect(error))
core.setFailed(error.message)
}