Skip to content

Commit b7ef083

Browse files
committed
fix: Read the 'cached_filings' input, not 'cached_results'
1 parent 0a808b4 commit b7ef083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/file/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default async function () {
2121
const repoWithOwner = core.getInput("repository", { required: true });
2222
const token = core.getInput("token", { required: true });
2323
const cachedFilings: (ResolvedFiling | RepeatedFiling)[] = JSON.parse(
24-
core.getInput("cached_results", { required: false }) || "[]"
24+
core.getInput("cached_filings", { required: false }) || "[]"
2525
);
2626
core.debug(`Input: 'findings: ${JSON.stringify(findings)}'`);
2727
core.debug(`Input: 'repository: ${repoWithOwner}'`);

0 commit comments

Comments
 (0)