Skip to content

Commit

Permalink
add no sec label
Browse files Browse the repository at this point in the history
  • Loading branch information
emilwareus committed Nov 7, 2023
1 parent 7abc421 commit d1bb0cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/fingerprint/fingerprint.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,8 @@ func inMemFingerprintingCompressedContent(filename string, exclusions []string)
if err != nil {
return nil, err
}
hasher := md5.New()
_, err = io.Copy(hasher, rc)
hasher := md5.New() // #nosec
_, err = io.Copy(hasher, rc) // #nosec
if err != nil {
return nil, err
}
Expand Down

0 comments on commit d1bb0cb

Please sign in to comment.