Skip to content

Commit d0d79ba

Browse files
committed
fix: require go 1.18
1 parent 2b160f7 commit d0d79ba

File tree

3 files changed

+19
-1918
lines changed

3 files changed

+19
-1918
lines changed

.github/workflows/go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v2
1818
with:
19-
go-version: 1.17
19+
go-version: 1.18
2020

2121
- name: Build
2222
run: go build -v ./...

go.mod

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,27 @@
11
module github.com/vknabel/lithia
22

3-
go 1.16
3+
go 1.18
44

55
require (
66
github.com/muesli/coral v1.0.0
7-
github.com/petermattis/goid v0.0.0-20220526132513-07eaf5d0b9f4 // indirect
87
github.com/smacker/go-tree-sitter v0.0.0-20220611151427-2c4b54ed41fe
98
github.com/tliron/glsp v0.1.1
109
github.com/tliron/kutil v0.1.60
1110
github.com/vknabel/tree-sitter-lithia v0.2.1
11+
)
12+
13+
require (
14+
github.com/gorilla/websocket v1.5.0 // indirect
15+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
16+
github.com/mattn/go-colorable v0.1.12 // indirect
17+
github.com/mattn/go-isatty v0.0.14 // indirect
18+
github.com/petermattis/goid v0.0.0-20220526132513-07eaf5d0b9f4 // indirect
19+
github.com/pkg/errors v0.9.1 // indirect
20+
github.com/sasha-s/go-deadlock v0.3.1 // indirect
21+
github.com/sourcegraph/jsonrpc2 v0.1.0 // indirect
22+
github.com/spf13/pflag v1.0.5 // indirect
23+
github.com/zchee/color/v2 v2.0.6 // indirect
24+
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
1225
golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d // indirect
26+
golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
1327
)

0 commit comments

Comments
 (0)