From 8387d18d4d7783e055a4193205f1b06dabf10df4 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Wed, 20 Nov 2019 21:13:56 +0100 Subject: [PATCH] Update Go version used for CI tests --- run_integration_tests.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/run_integration_tests.go b/run_integration_tests.go index 4a6366956..ef3cc19d3 100644 --- a/run_integration_tests.go +++ b/run_integration_tests.go @@ -28,8 +28,9 @@ var ForbiddenImports = map[string]bool{ // Use a specific version of gofmt (the latest stable, usually) to guarantee // deterministic formatting. This is used with the GoVersion.AtLeast() -// function (so that we don't forget to update it). -var GofmtVersion = ParseGoVersion("go1.11") +// function (so that we don't forget to update it). This is also used to run +// `go mod vendor` and `go mod tidy`. +var GofmtVersion = ParseGoVersion("go1.13") // GoVersion is the version of Go used to compile the project. type GoVersion struct {