We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb3691a commit 71aa1ebCopy full SHA for 71aa1eb
1 file changed
src/Agent.Worker/Build/TrackingConfigHashAlgorithm.cs
@@ -55,6 +55,7 @@ public static string ComputeHash(string collectionId, string definitionId, IList
55
56
private static string CreateHash(string hashInput)
57
{
58
+ //CodeQL [SM02196] Supress - Suppressing this warning as the hash is used only in the directory name and not for security purposes.
59
using (SHA1 sha1Hash = SHA1.Create())
60
61
byte[] data = sha1Hash.ComputeHash(Encoding.UTF8.GetBytes(hashInput));
0 commit comments