Skip to content

Commit 03bdbd1

Browse files
committed
Fix Linter deprecation warning
1 parent 3725186 commit 03bdbd1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.golangci.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ linters-settings:
8888
- github.com/spf13/viper
8989
- github.com/spf13/cobra
9090
- github.com/creasty/defaults
91+
- github.com/moby
9192
- go.uber.org/mock/gomock
9293
- github.com/golang/mock/gomock
9394
govet:

internal/docker/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/docker/docker/api/types/image"
1515
"github.com/docker/docker/api/types/registry"
1616
"github.com/docker/docker/client"
17-
"github.com/docker/docker/pkg/archive"
17+
"github.com/moby/go-archive"
1818
)
1919

2020
type BuildOptions struct {

0 commit comments

Comments
 (0)