diff --git a/src/inputs.test.ts b/src/inputs.test.ts index ac127d9..39a3e17 100644 --- a/src/inputs.test.ts +++ b/src/inputs.test.ts @@ -11,9 +11,9 @@ jest.unstable_mockModule("@actions/core", () => ({ describe("get action inputs", () => { interface TestCase { name: string; - booleanInputs?: { [key: string]: boolean }; - stringInputs?: { [key: string]: string }; - multilineInputs?: { [key: string]: string[] }; + booleanInputs?: Record; + stringInputs?: Record; + multilineInputs?: Record; expectedInputs?: Partial; }