From 4e07ed4980cfa04aa145b7890914f8b9a96676a6 Mon Sep 17 00:00:00 2001 From: Clay Miller Date: Mon, 13 Oct 2025 11:03:57 -0400 Subject: [PATCH] fix: Read the 'cached_filings' input, not 'cached_results' --- .github/actions/file/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/file/src/index.ts b/.github/actions/file/src/index.ts index fc10811..0c1304b 100644 --- a/.github/actions/file/src/index.ts +++ b/.github/actions/file/src/index.ts @@ -21,7 +21,7 @@ export default async function () { const repoWithOwner = core.getInput("repository", { required: true }); const token = core.getInput("token", { required: true }); const cachedFilings: (ResolvedFiling | RepeatedFiling)[] = JSON.parse( - core.getInput("cached_results", { required: false }) || "[]" + core.getInput("cached_filings", { required: false }) || "[]" ); core.debug(`Input: 'findings: ${JSON.stringify(findings)}'`); core.debug(`Input: 'repository: ${repoWithOwner}'`);