aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKir Kolyshkin <kolyshkin@gmail.com>2022-05-17 16:00:10 -0700
committerLasse Folger <lassefolger@google.com>2022-05-19 15:39:12 +0000
commit4790de629c8fc2bda206d4d1f0e521d9fb12a2fe (patch)
tree176212ec6eb4509f78cbbec8cd3bf5b8a9b7abc5
parentf8e9eb526f42b0cb102d81fcc82bec031d3f483b (diff)
downloadgolang-protobuf-4790de629c8fc2bda206d4d1f0e521d9fb12a2fe.tar.gz
all: update to latest staticcheck
The staticcheck version being used (2020.1.4) can no longer work with latest Go, spitting out errors like this one: > could not load export data: cannot import > "unicode" (unknown iexport format version 2), export data is newer > version - update tool (compile) Update to latest version, 2022.1.2, to fix this. Change-Id: I745482561a46baebc70931443008b95bec2fa377 Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/406842 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Joseph Tsai <joetsai@digital-static.net> Reviewed-by: Lasse Folger <lassefolger@google.com>
-rw-r--r--integration_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/integration_test.go b/integration_test.go
index 08a09126..4e6177e1 100644
--- a/integration_test.go
+++ b/integration_test.go
@@ -41,11 +41,11 @@ var (
golangVersions = []string{"1.11.13", "1.12.17", "1.13.15", "1.14.15", "1.15.15", "1.16.15", "1.17.10", "1.18.1"}
golangLatest = golangVersions[len(golangVersions)-1]
- staticcheckVersion = "2020.1.4"
+ staticcheckVersion = "2022.1.2"
staticcheckSHA256s = map[string]string{
- "darwin/amd64": "5706d101426c025e8f165309e0cb2932e54809eb035ff23ebe19df0f810699d8",
- "linux/386": "e4dbf94e940678ae7108f0d22c7c2992339bc10a8fb384e7e734b1531a429a1c",
- "linux/amd64": "09d2c2002236296de2c757df111fe3ae858b89f9e183f645ad01f8135c83c519",
+ "darwin/amd64": "baa35f8fb967ee2aacad57f026e3724fbf8d9b7ad8f682f4d44b2084a96e103b",
+ "linux/386": "4cf74373e5d668b265d7a241b59ba7d26064f2cd6af50b77e62c2b3e2f3afb43",
+ "linux/amd64": "6dbb7187e43812fa23363cdaaa90ab13544dd36e24d02e2347014e4cf265f06d",
}
// purgeTimeout determines the maximum age of unused sub-directories.