mirror of
https://gitea.com/actions/checkout.git
synced 2025-04-05 06:49:41 +00:00
update dev dependencies and react to new linting rules (#611)
This commit is contained in:
@ -24,7 +24,7 @@ async function run(): Promise<void> {
|
||||
coreCommand.issueCommand('remove-matcher', {owner: 'checkout-git'}, '')
|
||||
}
|
||||
} catch (error) {
|
||||
core.setFailed(error.message)
|
||||
core.setFailed(`${(error as any)?.message ?? error}`)
|
||||
}
|
||||
}
|
||||
|
||||
@ -32,7 +32,7 @@ async function cleanup(): Promise<void> {
|
||||
try {
|
||||
await gitSourceProvider.cleanup(stateHelper.RepositoryPath)
|
||||
} catch (error) {
|
||||
core.warning(error.message)
|
||||
core.warning(`${(error as any)?.message ?? error}`)
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user