Skip to content

Commit bfdcd62

Browse files
committed
update go to 1.17
Signed-off-by: Ed Bartosh <[email protected]>
1 parent 0a602c6 commit bfdcd62

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

.github/workflows/sanity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v2
99
- uses: actions/setup-go@v2
1010
with:
11-
go-version: 1.14.x
11+
go-version: 1.17.x
1212
- name: Install golint
1313
run: go get -u golang.org/x/lint/golint
1414
- name: Lint

go.mod

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,34 @@
11
module github.com/container-orchestrated-devices/container-device-interface
22

3-
go 1.14
3+
go 1.17
44

55
require (
6-
github.com/blang/semver v3.5.1+incompatible // indirect
7-
github.com/fsnotify/fsnotify v1.5.1 // indirect
86
github.com/hashicorp/go-multierror v1.1.1
97
github.com/opencontainers/runc v1.0.3
108
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417
119
github.com/opencontainers/runtime-tools v0.0.0-20190417131837-cd1349b7c47e
12-
github.com/opencontainers/selinux v1.10.0 // indirect
1310
github.com/pkg/errors v0.9.1
1411
github.com/spf13/cobra v1.2.1
1512
github.com/stretchr/testify v1.7.0
1613
github.com/xeipuuv/gojsonschema v1.2.0
17-
golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c // indirect
1814
gopkg.in/fsnotify.v1 v1.4.7
1915
sigs.k8s.io/yaml v1.3.0
2016
)
17+
18+
require (
19+
github.com/blang/semver v3.5.1+incompatible // indirect
20+
github.com/davecgh/go-spew v1.1.1 // indirect
21+
github.com/fsnotify/fsnotify v1.5.1 // indirect
22+
github.com/hashicorp/errwrap v1.0.0 // indirect
23+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
24+
github.com/opencontainers/selinux v1.10.0 // indirect
25+
github.com/pmezard/go-difflib v1.0.0 // indirect
26+
github.com/sirupsen/logrus v1.8.1 // indirect
27+
github.com/spf13/pflag v1.0.5 // indirect
28+
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
29+
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
30+
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
31+
golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c // indirect
32+
gopkg.in/yaml.v2 v2.4.0 // indirect
33+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
34+
)

0 commit comments

Comments
 (0)