You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AuditLogger.warning(f"Security Issue: Supply chain. {username} was renamed but used in workflows. Signup the username at https://github.com to make sure.")
self.logger.warning(f"Security Issue: Supply chain. {username} was renamed but used in workflows. Signup the username at https://github.com to make sure.")
24
25
25
-
defaction_audit():
26
-
ifPath('actions.txt').exists():
27
-
usernames=read_actions_file()
28
-
check_usernames(usernames)
29
-
Path('actions.txt').unlink()
30
-
else:
31
-
AuditLogger.info("No actions.txt file to scan. Supply chain scan complete.")
26
+
defaction_audit(self):
27
+
ifPath('actions.txt').exists():
28
+
usernames=read_actions_file()
29
+
self.check_usernames(usernames)
30
+
Path('actions.txt').unlink()
31
+
else:
32
+
self.logger.info("No actions.txt file to scan. Supply chain scan complete.")
AuditLogger.warning(f">>> Security Issue: RCE detected with {regex} in {step_number}: ENV variable {environ_variable} is called through GitHub context and takes user input {environ_var_value}")
85
+
logger.warning(f">>> Security Issue: RCE detected with {regex} in {step_number}: ENV variable {environ_variable} is called through GitHub context and takes user input {environ_var_value}")
86
86
else:
87
-
AuditLogger.warning(f">>> Security Issue: RCE detected with {regex} in {step_number}: Usage of {','.join(matched_strings)} found.")
87
+
logger.warning(f">>> Security Issue: RCE detected with {regex} in {step_number}: Usage of {','.join(matched_strings)} found.")
88
88
89
89
# Some actions combined with triggers can be bad. Check for those cases.
0 commit comments