[chore] Bump tooling versions, bump go -> v1.23.0 (#3258)

* [chore] Bump tooling versions, bump go -> v1.23.0

* undo silly change

* sign

* bump go version in go.mod

* allow overflow in imaging

* goreleaser deprecation notices

* bump versions

* undo accidental rebase change

* update container versions to just use latest major version

* update swagger to our release with go1.23 fix

* update goreleaser to use our vendored swagger version

---------

Co-authored-by: kim <grufwub@gmail.com>
This commit is contained in:
tobi
2024-11-25 16:15:33 +01:00
committed by GitHub
parent da4db81bcf
commit c454b1b488
9 changed files with 27 additions and 23 deletions

View File

@ -303,6 +303,8 @@ func (s *schemaBuilder) buildFromType(tpe types.Type, tgt swaggerTypable) error
}
switch titpe := tpe.(type) {
case *types.Alias:
return nil // resolves panic
case *types.Basic:
return swaggerSchemaForType(titpe.String(), tgt)
case *types.Pointer: