Skip to content

Commit

Permalink
Deprecation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
segevfiner committed Feb 25, 2023
1 parent 865d337 commit 218aa3b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.19

- name: Build
run: go build -v ./...
Expand All @@ -29,6 +29,6 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v3
2 changes: 1 addition & 1 deletion dockerexec.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ type Cmd struct {
closeAfterOutput []io.Closer
goroutine []func() error
errch chan error // one send per goroutine
waitCh <-chan container.ContainerWaitOKBody
waitCh <-chan container.WaitResponse
waitErrCh <-chan error
waitDone chan struct{}
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/segevfiner/dockerexec

go 1.17
go 1.19

require (
github.com/docker/docker v23.0.1+incompatible
Expand Down

0 comments on commit 218aa3b

Please sign in to comment.