Skip to content

Commit f0190fe

Browse files
Update golang to 1.18 (#41)
Also upgrade `golangci-lint` Trying to find out why CI checks are failing
1 parent 27bd10f commit f0190fe

File tree

5 files changed

+39
-188
lines changed

5 files changed

+39
-188
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
uses: golangci/golangci-lint-action@v2
1818
with:
1919
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
20-
version: v1.42
20+
version: v1.45

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-go@v2
1414
with:
15-
go-version: 1.16
15+
go-version: 1.18
1616
- uses: goreleaser/goreleaser-action@v2
1717
with:
1818
distribution: goreleaser

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: '1.16'
14+
go-version: '1.18'
1515
- run: go test ./...
1616

go.mod

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

3-
go 1.16
3+
go 1.18
44

55
require (
66
github.com/JohannesKaufmann/html-to-markdown v1.3.0
@@ -11,3 +11,33 @@ require (
1111
github.com/sirupsen/logrus v1.8.1
1212
github.com/stretchr/testify v1.7.0
1313
)
14+
15+
require (
16+
github.com/Masterminds/goutils v1.1.1 // indirect
17+
github.com/Masterminds/semver v1.5.0 // indirect
18+
github.com/Masterminds/semver/v3 v3.1.1 // indirect
19+
github.com/Masterminds/sprig/v3 v3.2.2 // indirect
20+
github.com/PuerkitoBio/goquery v1.5.1 // indirect
21+
github.com/andybalholm/cascadia v1.1.0 // indirect
22+
github.com/davecgh/go-spew v1.1.1 // indirect
23+
github.com/fatih/color v1.13.0 // indirect
24+
github.com/google/uuid v1.1.2 // indirect
25+
github.com/huandu/xstrings v1.3.1 // indirect
26+
github.com/imdario/mergo v0.3.11 // indirect
27+
github.com/mattn/go-colorable v0.1.9 // indirect
28+
github.com/mattn/go-isatty v0.0.14 // indirect
29+
github.com/mitchellh/copystructure v1.0.0 // indirect
30+
github.com/mitchellh/reflectwalk v1.0.0 // indirect
31+
github.com/pkg/errors v0.9.1 // indirect
32+
github.com/pmezard/go-difflib v1.0.0 // indirect
33+
github.com/shopspring/decimal v1.2.0 // indirect
34+
github.com/spf13/cast v1.3.1 // indirect
35+
github.com/stretchr/objx v0.3.0 // indirect
36+
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
37+
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect
38+
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
39+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
40+
gopkg.in/yaml.v2 v2.4.0 // indirect
41+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
42+
sigs.k8s.io/yaml v1.3.0 // indirect
43+
)

0 commit comments

Comments
 (0)