Skip to content

Commit b748f12

Browse files
authored
Merge pull request #172 from AkihiroSuda/go117
Go 1.17
2 parents 68d8c7b + 7e3e17e commit b748f12

File tree

3 files changed

+36
-6
lines changed

3 files changed

+36
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
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.16.x
19+
go-version: 1.17.x
2020
- uses: actions/checkout@v2
2121
- name: "Compile binaries"
2222
run: make artifacts

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- uses: actions/setup-go@v2
4343
with:
44-
go-version: 1.16.x
44+
go-version: 1.17.x
4545
- uses: actions/checkout@v2
4646
with:
4747
fetch-depth: 1
@@ -60,7 +60,7 @@ jobs:
6060
steps:
6161
- uses: actions/setup-go@v2
6262
with:
63-
go-version: 1.16.x
63+
go-version: 1.17.x
6464
- uses: actions/checkout@v2
6565
with:
6666
fetch-depth: 1
@@ -87,7 +87,7 @@ jobs:
8787
steps:
8888
- uses: actions/setup-go@v2
8989
with:
90-
go-version: 1.16.x
90+
go-version: 1.17.x
9191
- uses: actions/checkout@v2
9292
with:
9393
fetch-depth: 1
@@ -136,7 +136,7 @@ jobs:
136136
steps:
137137
- uses: actions/setup-go@v2
138138
with:
139-
go-version: 1.16.x
139+
go-version: 1.17.x
140140
- uses: actions/checkout@v2
141141
with:
142142
fetch-depth: 1

go.mod

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/lima-vm/lima
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/AlecAivazis/survey/v2 v2.3.1
@@ -26,3 +26,33 @@ require (
2626
gopkg.in/yaml.v2 v2.4.0
2727
gotest.tools/v3 v3.0.3
2828
)
29+
30+
require (
31+
github.com/VividCortex/ewma v1.1.1 // indirect
32+
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
33+
github.com/digitalocean/go-libvirt v0.0.0-20201209184759-e2a69bcd5bd1 // indirect
34+
github.com/fatih/color v1.10.0 // indirect
35+
github.com/fsnotify/fsnotify v1.4.9 // indirect
36+
github.com/golang/protobuf v1.5.0 // indirect
37+
github.com/google/go-cmp v0.5.5 // indirect
38+
github.com/hashicorp/errwrap v1.0.0 // indirect
39+
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
40+
github.com/kr/fs v0.1.0 // indirect
41+
github.com/mattn/go-colorable v0.1.8 // indirect
42+
github.com/mattn/go-runewidth v0.0.12 // indirect
43+
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
44+
github.com/pkg/errors v0.9.1 // indirect
45+
github.com/pkg/sftp v1.13.2 // indirect
46+
github.com/rivo/uniseg v0.2.0 // indirect
47+
github.com/russross/blackfriday/v2 v2.0.1 // indirect
48+
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
49+
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
50+
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
51+
golang.org/x/term v0.0.0-20210503060354-a79de5458b56 // indirect
52+
golang.org/x/text v0.3.6 // indirect
53+
google.golang.org/genproto v0.0.0-20210312152112-fc591d9ea70f // indirect
54+
google.golang.org/grpc v1.39.0-dev.0.20210518002758-2713b77e8526 // indirect
55+
google.golang.org/protobuf v1.26.0 // indirect
56+
gopkg.in/djherbis/times.v1 v1.2.0 // indirect
57+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
58+
)

0 commit comments

Comments
 (0)