Skip to content

Commit 67089f8

Browse files
committed
Drop Go 1.11 and 1.12
Between Go 1.12 and Go 1.13, go.sum's checksum algorithm has been changed. We cannot have single go.sum for the two versions. According to https://golang.org/doc/devel/release.html; Go 1.11 and Go.1.12 are no longer supported, after Go 1.14; > Each major Go release is supported until there are two newer major > releases. Given the fact we only run integration tests with Go 1.13 on BuildKite, it would be okay to remove the older Go versions from Travis and GitHub Actions. Signed-off-by: Kazuyoshi Kato <[email protected]>
1 parent 5f9e9d2 commit 67089f8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
go: ['1.11', '1.12', '1.13', '1.14']
20+
go: ['1.13', '1.14']
2121
# Build all variants regardless of failures
2222
fail-fast: false
2323
name: Go ${{ matrix.go }}

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ dist: xenial
22
language: go
33

44
go:
5+
- 1.14.x
56
- 1.13.x
6-
- 1.12.x
7-
- 1.11.x
87

98
env:
109
- GO111MODULE=on

0 commit comments

Comments
 (0)