Bumping to go1.18, bumping dev tools

This commit is contained in:
Mike Farah
2022-03-28 14:18:55 +11:00
parent bbeae229ca
commit 3cd999bb87
9 changed files with 9 additions and 14 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ func copyFileContents(src, dst string) (err error) {
return err
}
defer safelyCloseFile(in)
out, err := os.Create(dst)
out, err := os.Create(dst) // #nosec
if err != nil {
return err
}