Skip to content

Commit 3c003f8

Browse files
committed
Upgrade compiler to Go 1.19
Signed-off-by: Austin Vazquez <[email protected]>
1 parent 57b6981 commit 3c003f8

3 files changed

Lines changed: 30 additions & 370 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/setup-go@v2
1818
with:
19-
go-version: 1.18
19+
go-version: 1.19
2020

2121
- name: Set env
2222
shell: bash
@@ -40,7 +40,7 @@ jobs:
4040

4141
strategy:
4242
matrix:
43-
go-version: [1.18]
43+
go-version: [1.19]
4444
os: [ubuntu-18.04]
4545

4646
steps:
@@ -71,7 +71,7 @@ jobs:
7171

7272
- uses: actions/setup-go@v2
7373
with:
74-
go-version: 1.18
74+
go-version: 1.19
7575

7676
- name: Set env
7777
shell: bash

go.mod

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,35 @@
11
module github.com/containerd/zfs
22

3-
go 1.16
3+
go 1.19
44

55
require (
66
github.com/containerd/containerd v1.6.8
77
github.com/containerd/continuity v0.2.2
88
github.com/mistifyio/go-zfs/v3 v3.0.0
99
)
10+
11+
require (
12+
github.com/Microsoft/go-winio v0.5.1 // indirect
13+
github.com/Microsoft/hcsshim v0.9.4 // indirect
14+
github.com/containerd/cgroups v1.0.3 // indirect
15+
github.com/containerd/ttrpc v1.1.0 // indirect
16+
github.com/containerd/typeurl v1.0.2 // indirect
17+
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
18+
github.com/gogo/protobuf v1.3.2 // indirect
19+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
20+
github.com/golang/protobuf v1.5.2 // indirect
21+
github.com/google/go-cmp v0.5.6 // indirect
22+
github.com/google/uuid v1.2.0 // indirect
23+
github.com/moby/sys/mountinfo v0.5.0 // indirect
24+
github.com/opencontainers/go-digest v1.0.0 // indirect
25+
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect
26+
github.com/pkg/errors v0.9.1 // indirect
27+
github.com/sirupsen/logrus v1.8.1 // indirect
28+
go.etcd.io/bbolt v1.3.6 // indirect
29+
go.opencensus.io v0.23.0 // indirect
30+
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
31+
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
32+
google.golang.org/grpc v1.43.0 // indirect
33+
google.golang.org/protobuf v1.27.1 // indirect
34+
gotest.tools/v3 v3.0.3 // indirect
35+
)

0 commit comments

Comments
 (0)