File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ jobs:
12
12
build :
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v2
15
+ - uses : actions/checkout@v3
16
16
17
17
- name : Set up Go
18
- uses : actions/setup-go@v2
18
+ uses : actions/setup-go@v3
19
19
with :
20
- go-version : 1.17
20
+ go-version : 1.19
21
21
22
22
- name : Build
23
23
run : go build -v ./...
29
29
name : lint
30
30
runs-on : ubuntu-latest
31
31
steps :
32
- - uses : actions/checkout@v2
32
+ - uses : actions/checkout@v3
33
33
- name : golangci-lint
34
- uses : golangci/golangci-lint-action@v2
34
+ uses : golangci/golangci-lint-action@v3
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ type Cmd struct {
87
87
closeAfterOutput []io.Closer
88
88
goroutine []func () error
89
89
errch chan error // one send per goroutine
90
- waitCh <- chan container.ContainerWaitOKBody
90
+ waitCh <- chan container.WaitResponse
91
91
waitErrCh <- chan error
92
92
waitDone chan struct {}
93
93
}
Original file line number Diff line number Diff line change 1
1
module github.com/segevfiner/dockerexec
2
2
3
- go 1.17
3
+ go 1.19
4
4
5
5
require (
6
6
github.com/docker/docker v23.0.1+incompatible
You can’t perform that action at this time.
0 commit comments