security: Update go-uuid and mholt/archiver to recommended version (#2216)

* security: Update go-uuid to recommended version
* security: Update mholt/archiver dep to recommended version

Signed-off-by: Sanket Sudake <sanketsudake@gmail.com>
This commit is contained in:
Sanket Sudake
2021-10-06 13:24:54 +05:30
committed by GitHub
parent 0d319c07ae
commit e4d5565f8e
19 changed files with 113 additions and 36 deletions
+5 -1
View File
@@ -88,7 +88,11 @@ func IsReadyPod(pod *apiv1.Pod) bool {
// GetTempDir creates and return a temporary directory
func GetTempDir() (string, error) {
tmpDir := uuid.NewV4().String()
id, err := uuid.NewV4()
if err != nil {
return "", err
}
tmpDir := id.String()
dir, err := ioutil.TempDir("", tmpDir)
return dir, err
}