Skip to content

Commit 3b22b31

Browse files
committed
Drop Go 1.11 and 1.12
go.mongodb.org/mongo-driver < 1.5.1 has a vulnerability. While the SDK won't be affected, having old mongo-driver package makes automated security notificaion systems (incl. GitHub's) unhappy. To upgrade mongo-driver, we need to upgrade github.com/go-openapi packages. However they don't work on Go 1.11 and 1.12. This change removes Go 1.11 and Go 1.12 from GitHub Actions. They are no longer supported by the Go team and many packages don't work on the versions anymore. GHSA-f6mq-5m25-4r72 Signed-off-by: Kazuyoshi Kato <[email protected]>
1 parent ace01fb commit 3b22b31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
strategy:
1313
matrix:
14-
go: ['1.11', '1.12', '1.13', '1.14', '1.15', '1.16']
14+
go: ['1.13', '1.14', '1.15', '1.16', '1.17']
1515
os: ['ubuntu-20.04']
1616
fail-fast: false
1717
name: ${{ matrix.os }} / Go ${{ matrix.go }}

0 commit comments

Comments
 (0)