backport changes to use newer core

This commit is contained in:
jordanb-afs 2023-04-10 08:50:02 -06:00
parent 5b3a607f35
commit 6098719e4f
4 changed files with 27802 additions and 44693 deletions

View file

@ -37,7 +37,9 @@ async function run(): Promise<void> {
const results = filter.match(files)
exportResults(results, listFiles)
} catch (error) {
core.setFailed(error.message)
if (error instanceof Error) {
core.setFailed(error.message)
}
}
}