ci: bump go version (#15716)

This commit is contained in:
Julien Robert
2023-04-06 09:55:19 +02:00
committed by GitHub
parent 68af247459
commit 3f3beb319e
16 changed files with 56 additions and 57 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ func (s *StringSuite) TestUnsafeStrToBytes() {
b := unsafeConvertStr()
runtime.GC()
<-time.NewTimer(2 * time.Millisecond).C
b2 := append(b, 'd') //nolint:gocritic // append is fine here
b2 := append(b, 'd')
s.Equal("abc", string(b))
s.Equal("abcd", string(b2))
}