agentmail
Audited by Socket on Jul 14, 2026
2 alerts found:
Anomalyx2No overt malware or obfuscation is visible in this workflow YAML. The workflow is structurally typical for CI but has meaningful supply-chain exposure because it runs multiple repo-local scripts/actions with access to secrets and an authenticated upload token, and it dynamically links a private module version based on github.ref_name. A thorough review of the executed repo-local scripts/actions (setup-go, link, bootstrap, lint, test, and upload-artifact.sh) is necessary to confirm there is no unexpected network exfiltration, malicious dependency manipulation, or overly broad token usage during CI.
Overall, this is a CI/CD-style packager/uploader that collects specific platform binaries, bundles them into dist.zip with a generated macOS quarantine-removal README, obtains a signed destination via an authenticated API call, and uploads the artifact over the network. No direct malware behavior is evident in this snippet, but there are meaningful supply-chain and operational risks: `set -x` may leak the Bearer token and/or signed URL into logs, upload destinations are determined by externally provided/API response values without allowlisting, and the script generates guidance that explicitly bypasses a macOS security safeguard.