From 1930b5e170c0861979da895f4d74defc48f54047 Mon Sep 17 00:00:00 2001 From: sandhi Date: Thu, 5 Mar 2026 15:10:18 +0530 Subject: [PATCH] Fix timeout issue Signed-off-by: sandhi --- .github/workflows/sbom.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/sbom.yml b/.github/workflows/sbom.yml index 432be9f..77cba9f 100644 --- a/.github/workflows/sbom.yml +++ b/.github/workflows/sbom.yml @@ -266,6 +266,10 @@ jobs: # Start with base arguments (always exclude PIP detector) DETECT_ARGS="--detect.excluded.detector.types=PIP" + # Add timeout configurations to prevent BOM scan timeouts + DETECT_ARGS="${DETECT_ARGS} --detect.timeout=3600" + DETECT_ARGS="${DETECT_ARGS} --blackduck.timeout=1200" + # Add low accuracy mode if requested if [[ "${{ inputs.blackduck-force-low-accuracy-mode }}" == "true" ]]; then DETECT_ARGS="${DETECT_ARGS} --detect.accuracy.required=NONE"