mirror of
https://github.com/mudler/luet.git
synced 2025-09-27 15:43:17 +00:00
bump github.com/moby/buildkit to v0.13.0 (#351)
* bump github.com/moby/buildkit to v0.13.0 Signed-off-by: Nianyu Shen <nianyu@spectrocloud.com> * fix: update dep usage based on newer version Signed-off-by: Nianyu Shen <nianyu@spectrocloud.com> * remove empty line Signed-off-by: Nianyu Shen <nianyu@spectrocloud.com> * ci: bump golang to 1.21.x * Bump moby * debug --------- Signed-off-by: Nianyu Shen <nianyu@spectrocloud.com> Co-authored-by: Nianyu Shen <nianyu@spectrocloud.com>
This commit is contained in:
committed by
GitHub
parent
c47bf4833a
commit
4c788ccbd1
3
vendor/github.com/google/go-containerregistry/pkg/v1/daemon/write.go
generated
vendored
3
vendor/github.com/google/go-containerregistry/pkg/v1/daemon/write.go
generated
vendored
@@ -17,7 +17,6 @@ package daemon
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
|
||||
"github.com/google/go-containerregistry/pkg/name"
|
||||
v1 "github.com/google/go-containerregistry/pkg/v1"
|
||||
@@ -52,7 +51,7 @@ func Write(tag name.Tag, img v1.Image, options ...Option) (string, error) {
|
||||
return "", fmt.Errorf("error loading image: %w", err)
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
b, err := ioutil.ReadAll(resp.Body)
|
||||
b, err := io.ReadAll(resp.Body)
|
||||
response := string(b)
|
||||
if err != nil {
|
||||
return response, fmt.Errorf("error reading load response body: %w", err)
|
||||
|
Reference in New Issue
Block a user