Skip to content

Commit

Permalink
Removes break from check for 3p actions without SHA commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bin3xish477 committed Aug 7, 2023
1 parent ec934d5 commit 747b022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analyzer/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def _check_for_3p_actions_without_hash(self) -> bool:
print(
f"{Colors.LIGHT_GRAY}INFO{Colors.END} step using action('{uses}') with version number instead of a SHA hash"
)
passed = False
break
if passed:
passed = False
return passed

def _check_for_inline_script(self) -> bool:
Expand Down

0 comments on commit 747b022

Please sign in to comment.