Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit 0e95f54

Browse files
authored
Merge pull request #348 from vania-pooh/master
Docker API 1.44 support
2 parents 1ad8c2c + 2f4214a commit 0e95f54

11 files changed

+280
-213
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Golang
1515
uses: actions/setup-go@v3
1616
with:
17-
go-version: ~1.21.5
17+
go-version: ~1.21.6
1818

1919
- uses: actions/cache@v3
2020
with:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup Golang
1414
uses: actions/setup-go@v3
1515
with:
16-
go-version: ~1.21.5
16+
go-version: ~1.21.6
1717

1818
- uses: actions/cache@v3
1919
with:

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Golang
1313
uses: actions/setup-go@v3
1414
with:
15-
go-version: ~1.21.5
15+
go-version: ~1.21.6
1616

1717
- uses: actions/cache@v3
1818
with:

browsers.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,23 +64,23 @@
6464
"files": {
6565
"linux": {
6666
"amd64": {
67-
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.106.0.5249.119 /operadriver_linux64.zip",
67+
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.106.0.5249.119/operadriver_linux64.zip",
6868
"filename": "operadriver_linux64/operadriver"
6969
}
7070
},
7171
"darwin": {
7272
"amd64": {
73-
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.106.0.5249.119 /operadriver_mac64.zip",
73+
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.106.0.5249.119/operadriver_mac64.zip",
7474
"filename": "operadriver_mac64/operadriver"
7575
}
7676
},
7777
"windows": {
7878
"386": {
79-
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.106.0.5249.119 /operadriver_win32.zip",
79+
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.106.0.5249.119/operadriver_win32.zip",
8080
"filename": "operadriver_win32/operadriver.exe"
8181
},
8282
"amd64": {
83-
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.106.0.5249.119 /operadriver_win64.zip",
83+
"url": "https://github.com/operasoftware/operachromiumdriver/releases/download/v.106.0.5249.119/operadriver_win64.zip",
8484
"filename": "operadriver_win64/operadriver.exe"
8585
}
8686
}

go.mod

+24-12
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,61 @@
11
module github.com/aerokube/cm
22

3-
go 1.20
3+
go 1.21
44

55
require (
6-
github.com/Masterminds/semver/v3 v3.0.1
7-
github.com/aandryashin/matchers v0.0.0-20161126170413-435295ea180e
8-
github.com/aerokube/selenoid v0.0.0-20220701113004-fbf82d85faee
6+
github.com/Masterminds/semver/v3 v3.2.1
7+
github.com/aerokube/selenoid v0.0.0-20240109083731-079fe2dfad4f
98
github.com/docker/cli v23.0.1+incompatible
10-
github.com/docker/docker v24.0.7+incompatible
11-
github.com/docker/go-connections v0.4.0
9+
github.com/docker/docker v25.0.0+incompatible
10+
github.com/docker/go-connections v0.5.0
1211
github.com/docker/go-units v0.5.0
1312
github.com/fatih/color v1.14.1
1413
github.com/fvbommel/sortorder v1.0.2
1514
github.com/google/go-github v17.0.0+incompatible
1615
github.com/heroku/docker-registry-client v0.0.0-20211012143308-9463674c8930
1716
github.com/mattn/go-colorable v0.1.13
1817
github.com/mitchellh/go-ps v1.0.0
19-
github.com/spf13/cobra v1.6.1
18+
github.com/spf13/cobra v1.8.0
19+
github.com/stretchr/testify v1.8.4
2020
gopkg.in/cheggaaa/pb.v1 v1.0.28
2121
)
2222

2323
require (
2424
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
2525
github.com/Microsoft/go-winio v0.6.1 // indirect
26+
github.com/containerd/log v0.1.0 // indirect
27+
github.com/davecgh/go-spew v1.1.1 // indirect
28+
github.com/distribution/reference v0.5.0 // indirect
2629
github.com/docker/distribution v2.8.2+incompatible // indirect
2730
github.com/docker/docker-credential-helpers v0.6.0 // indirect
2831
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect
32+
github.com/felixge/httpsnoop v1.0.4 // indirect
33+
github.com/go-logr/logr v1.4.1 // indirect
34+
github.com/go-logr/stdr v1.2.2 // indirect
2935
github.com/gogo/protobuf v1.3.2 // indirect
3036
github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135 // indirect
3137
github.com/imdario/mergo v0.3.13 // indirect
32-
github.com/inconshreveable/mousetrap v1.0.1 // indirect
38+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3339
github.com/mattn/go-isatty v0.0.17 // indirect
3440
github.com/mattn/go-runewidth v0.0.2 // indirect
3541
github.com/moby/term v0.5.0 // indirect
3642
github.com/morikuni/aec v1.0.0 // indirect
3743
github.com/opencontainers/go-digest v1.0.0 // indirect
3844
github.com/opencontainers/image-spec v1.0.2 // indirect
3945
github.com/pkg/errors v0.9.1 // indirect
40-
github.com/sirupsen/logrus v1.9.0 // indirect
46+
github.com/pmezard/go-difflib v1.0.0 // indirect
47+
github.com/sirupsen/logrus v1.9.3 // indirect
4148
github.com/spf13/pflag v1.0.5 // indirect
42-
github.com/stretchr/testify v1.8.3 // indirect
49+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
50+
go.opentelemetry.io/otel v1.22.0 // indirect
51+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.22.0 // indirect
52+
go.opentelemetry.io/otel/metric v1.22.0 // indirect
53+
go.opentelemetry.io/otel/sdk v1.22.0 // indirect
54+
go.opentelemetry.io/otel/trace v1.22.0 // indirect
4355
golang.org/x/mod v0.10.0 // indirect
44-
golang.org/x/net v0.17.0 // indirect
45-
golang.org/x/sys v0.13.0 // indirect
56+
golang.org/x/sys v0.16.0 // indirect
4657
golang.org/x/time v0.3.0 // indirect
4758
golang.org/x/tools v0.9.1 // indirect
59+
gopkg.in/yaml.v3 v3.0.1 // indirect
4860
gotest.tools/v3 v3.4.0 // indirect
4961
)

0 commit comments

Comments
 (0)