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
fix: suppress CodeQL false positive for workspace path hashing
CodeQL incorrectly flags SHA-256 usage for workspace path hashing as
'insufficient password hash'. This is a false positive - we use SHA-256
to create deterministic collection names, not for password security.
Changes:
- Added CodeQL config file to suppress js/insufficient-password-hash
- Updated CodeQL workflow to use the config file
- Added lgtm suppression comments in code for clarity
- Documented that SHA-256 is used for identifier generation, not passwords
This is safe and appropriate - SHA-256 for non-cryptographic identifiers
is a standard practice and does not pose any security risk.
0 commit comments