Skip to content

Commit f999f45

Browse files
committed
refactor: always run build service check if repo is found
Signed-off-by: behnazh-w <[email protected]>
1 parent f051d8a commit f999f45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/macaron/slsa_analyzer/checks/build_service_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self) -> None:
7575
"""Initiate the BuildServiceCheck instance."""
7676
check_id = "mcn_build_service_1"
7777
description = "Check if the target repo has a valid build service."
78-
depends_on: list[tuple[str, CheckResultType]] = [("mcn_build_as_code_1", CheckResultType.FAILED)]
78+
depends_on: list[tuple[str, CheckResultType]] = [("mcn_version_control_system_1", CheckResultType.PASSED)]
7979
eval_reqs = [ReqName.BUILD_SERVICE]
8080
super().__init__(
8181
check_id=check_id,

0 commit comments

Comments
 (0)