Skip to content

Commit 982f82c

Browse files
committed
Update Go to 1.19
Because glog requires this version at least.
1 parent da05b16 commit 982f82c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-20.04
1313
strategy:
1414
matrix:
15-
go: [ 1.17, 1.18 ]
15+
go: [ "1.19", "1.20" ]
1616
steps:
1717
- uses: actions/checkout@v2
1818

@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Go
3636
uses: actions/setup-go@v2
3737
with:
38-
go-version: 1.18
38+
go-version: 1.19
3939

4040
- name: Test
4141
run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Tiny **structured logging** abstraction or facade for various logging libraries,
2828
go get github.com/elgopher/yala
2929
```
3030

31-
Please note that at least Go `1.17` is required.
31+
Please note that at least Go `1.19` is required.
3232

3333
## How to use
3434

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/elgopher/yala
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/golang/glog v1.2.4

0 commit comments

Comments
 (0)