Skip to content

Commit 21cc886

Browse files
authored
runtime: upgrade from go 1.11 to go 1.18 (#330)
1 parent f9ccf5b commit 21cc886

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
ci:
77
strategy:
88
matrix:
9-
go-version: [1.11.x, 1.17.x]
9+
go-version: [1.18.x]
1010

1111
runs-on: ubuntu-latest
1212

.github/workflows/protobuf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: env.PROTOBUFS_CHANGED == 'true'
2727
uses: actions/setup-go@v2
2828
with:
29-
go-version: 1.14.x
29+
go-version: 1.18.x
3030

3131
- name: Install Protobuf tools
3232
if: env.PROTOBUFS_CHANGED == 'true'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ If you have been enjoying this library and are considering donating, please chec
4949

5050
## Requirements
5151

52-
This library requires at least `go 1.11` to run.
52+
This library requires at least `go 1.18` to run.
5353
You can download the latest version of Go [here](https://golang.org/).
5454

5555
## Quickstart Guide

go.mod

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,17 @@ require (
1414
github.com/stretchr/testify v1.7.0
1515
)
1616

17+
require (
18+
github.com/davecgh/go-spew v1.1.1 // indirect
19+
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
20+
github.com/pmezard/go-difflib v1.0.0 // indirect
21+
github.com/stretchr/objx v0.1.0 // indirect
22+
golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81 // indirect
23+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
24+
)
25+
1726
replace github.com/dustin/go-heatmap => github.com/markus-wa/go-heatmap v1.0.0
1827

1928
replace github.com/stretchr/testify => github.com/stretchr/testify v1.6.1
2029

21-
go 1.11
30+
go 1.18

0 commit comments

Comments
 (0)