chore: fix type checking and CI workflow (#2)

This commit is contained in:
2026-02-17 23:58:33 +02:00
committed by GitHub
parent 36f25aaff4
commit 07ab166750
6 changed files with 12 additions and 14 deletions

View File

@@ -157,7 +157,7 @@ class Parser:
actions_used: list[ActionRef] = []
secrets_used: set[str] = set()
if is_reusable_call:
if is_reusable_call and isinstance(uses, str):
# Parse reusable workflow reference
workflow_ref = self._parse_reusable_workflow_ref(uses, path)
actions_used.append(workflow_ref)