diff -r 4f153a23adab -r 6d9efbef00a9 vendor/github.com/spf13/afero/afero.go --- a/vendor/github.com/spf13/afero/afero.go Mon Jun 07 20:58:18 2021 +0200 +++ b/vendor/github.com/spf13/afero/afero.go Sun Jul 11 10:35:56 2021 +0200 @@ -91,9 +91,12 @@ // The name of this FileSystem Name() string - //Chmod changes the mode of the named file to mode. + // Chmod changes the mode of the named file to mode. Chmod(name string, mode os.FileMode) error + // Chown changes the uid and gid of the named file. + Chown(name string, uid, gid int) error + //Chtimes changes the access and modification times of the named file Chtimes(name string, atime time.Time, mtime time.Time) error }