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
maskSensitiveInfo() in src/security/security.ts uses String.prototype.replaceAll to scrub tokens, which can miss edge cases when secrets contain regex‑like substrings or overlaps. Switch to an escaped‑regex approach (escapeRegExp) or leverage core.setSecret() for reliable masking in logs.