Skip to content

Commit

Permalink
Fix BuildStepInput type
Browse files Browse the repository at this point in the history
  • Loading branch information
sjchmiela committed Jan 13, 2025
1 parent f2eb2de commit d602b71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/steps/src/BuildStepInput.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ export class BuildStepInput<
}
}

private parseInputValueToObject(value: string): Record<string, any> {
private parseInputValueToObject(value: string): unknown {
try {
return JSON.parse(value);
} catch (e: any) {
Expand Down

0 comments on commit d602b71

Please sign in to comment.