1
0
mirror of https://github.com/benjlevesque/short-sha.git synced 2026-03-09 22:04:52 +01:00

Remove "any"

This commit is contained in:
Benjamin Levesque
2022-10-28 15:04:23 +02:00
parent a830b0d2aa
commit 5da834993f
2 changed files with 9 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ async function run(): Promise<void> {
core.setOutput('sha', shortSha)
core.exportVariable('SHA', shortSha)
} catch (error: any) {
} catch (error) {
core.setFailed(error.message)
}
}