[release-10.4.18] Go: Bump to 1.24.2 (#103531)

* Go: Bump to 1.24.2

* CI: Update golangci-lint

* feat: update swagger

* fix: more lints

* fix: lints
This commit is contained in:
Mariell Hoversholm
2025-04-09 11:12:33 +02:00
committed by GitHub
parent ee117f713e
commit 750b094dda
75 changed files with 846 additions and 368 deletions
+5
View File
@@ -107,8 +107,11 @@ func TestSQLEngine(t *testing.T) {
})
t.Run("Given row values with uint64 as time columns", func(t *testing.T) {
//nolint:gosec // G115: this is a test
tSeconds := uint64(dt.Unix())
//nolint:gosec // G115: this is a test
tMilliseconds := uint64(dt.UnixNano() / 1e6)
//nolint:gosec // G115: this is a test
tNanoSeconds := uint64(dt.UnixNano())
var nilPointer *uint64
@@ -151,6 +154,7 @@ func TestSQLEngine(t *testing.T) {
})
t.Run("Given row values with int32 as time columns", func(t *testing.T) {
//nolint:gosec // G115: this is a test
tSeconds := int32(dt.Unix())
var nilInt *int32
@@ -176,6 +180,7 @@ func TestSQLEngine(t *testing.T) {
})
t.Run("Given row values with uint32 as time columns", func(t *testing.T) {
//nolint:gosec // G115: this is a test
tSeconds := uint32(dt.Unix())
var nilInt *uint32