chore(ci): update golangci-lint to latest version

Signed-off-by: Ben Reedy <breed808@breed808.com>
This commit is contained in:
Ben Reedy
2024-05-12 09:24:05 +10:00
parent 99b6d215a2
commit c713bed4e3
3 changed files with 7 additions and 7 deletions

View File

@@ -12,13 +12,13 @@ type fakeWmiClass struct {
}
var (
mapQueryAll = func(src interface{}, class string, where string) string {
mapQueryAll = func(src interface{}, _ string, _ string) string {
return QueryAll(src, log.NewNopLogger())
}
mapQueryAllWhere = func(src interface{}, class string, where string) string {
mapQueryAllWhere = func(src interface{}, _ string, where string) string {
return QueryAllWhere(src, where, log.NewNopLogger())
}
mapQueryAllForClass = func(src interface{}, class string, where string) string {
mapQueryAllForClass = func(src interface{}, class string, _ string) string {
return QueryAllForClass(src, class, log.NewNopLogger())
}
mapQueryAllForClassWhere = func(src interface{}, class string, where string) string {