You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace github-script with file-based approach to avoid ARG_MAX limit
The 'Set results output' step used actions/github-script@v8, which
interpolated large filings JSON (~138KB+) as a CLI argument to node.
This exceeded Linux's ARG_MAX limit, causing 'Argument list too long'
errors.
Changes:
- Replace github-script step with bash heredoc + node heredoc approach
that writes data to temp files, avoiding CLI arg limits
- Add results_file output for consumers needing large dataset support
- Switch cache saving from value-based to file-based using gh-cache/save
- Keep results output for backward compatibility
Resolvesgithub/accessibility#10354
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments