diff --git a/src/index.ts b/src/index.ts index 6c6309ce..0440a5c2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -71,6 +71,7 @@ async function run(): Promise { } await addMatchers(); + // eslint-disable-next-line @typescript-eslint/no-explicit-any } catch (error: any) { core.setFailed(error.message); } diff --git a/src/registry.ts b/src/registry.ts index d61ff3f6..940ba348 100644 --- a/src/registry.ts +++ b/src/registry.ts @@ -45,7 +45,7 @@ export async function writeRegistryToFile( newContents += line + os.EOL; } }); - } catch (_) { + } catch { // do nothing... }