Skip to content

Commit f8c2a85

Browse files
Update SCAN_FILE_MAX_SIZE_BYTES to 2MB (#33)
<!-- Thank you for proposing a pull request! Please note that SOME TESTS WILL LIKELY FAIL due to how GitHub exposes secrets in Pull Requests from forks. Someone from the team will review your Pull Request and respond. Please describe your change and any implementation details below. -->
1 parent 7b33523 commit f8c2a85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commons/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const SARIF_VERSION = '2.1.0';
2020
export const IAC_TOOL_NAME = 'analyze-code-security-scc';
2121
// TODO: add iac tool documentation link.
2222
export const IAC_TOOL_DOCUMENTATION_LINK = '';
23-
export const SCAN_FILE_MAX_SIZE_BYTES = 1000000;
23+
export const SCAN_FILE_MAX_SIZE_BYTES = 2000000;
2424
export const MAX_SCAN_TIMEOUT = '10m';
2525
export const MIN_SCAN_TIMEOUT = '1m';
2626
export const DEFAULT_FAILURE_CRITERIA = 'Critical:1,High:1,Medium:1,Low:1,Operator:or';

0 commit comments

Comments
 (0)