mirror of
https://github.com/containers/skopeo.git
synced 2025-09-14 13:59:44 +00:00
Bump github.com/containers/buildah from 1.11.4 to 1.11.5
Bumps [github.com/containers/buildah](https://github.com/containers/buildah) from 1.11.4 to 1.11.5. - [Release notes](https://github.com/containers/buildah/releases) - [Changelog](https://github.com/containers/buildah/blob/master/CHANGELOG.md) - [Commits](https://github.com/containers/buildah/compare/v1.11.4...v1.11.5) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
committed by
Valentin Rothberg
parent
23d9383a36
commit
5f3219a854
6
vendor/github.com/Microsoft/hcsshim/layer.go
generated
vendored
6
vendor/github.com/Microsoft/hcsshim/layer.go
generated
vendored
@@ -4,7 +4,7 @@ import (
|
||||
"crypto/sha1"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/Microsoft/hcsshim/internal/guid"
|
||||
"github.com/Microsoft/go-winio/pkg/guid"
|
||||
"github.com/Microsoft/hcsshim/internal/wclayer"
|
||||
)
|
||||
|
||||
@@ -77,7 +77,7 @@ type GUID [16]byte
|
||||
|
||||
func NameToGuid(name string) (id GUID, err error) {
|
||||
g, err := wclayer.NameToGuid(name)
|
||||
return GUID(g), err
|
||||
return g.ToWindowsArray(), err
|
||||
}
|
||||
|
||||
func NewGUID(source string) *GUID {
|
||||
@@ -88,7 +88,7 @@ func NewGUID(source string) *GUID {
|
||||
}
|
||||
|
||||
func (g *GUID) ToString() string {
|
||||
return (guid.GUID)(*g).String()
|
||||
return guid.FromWindowsArray(*g).String()
|
||||
}
|
||||
|
||||
type LayerReader = wclayer.LayerReader
|
||||
|
Reference in New Issue
Block a user