chore(deps): update github actions (master) (#2394)

Co-authored-by: Jan-Otto Kröpke <mail@jkroepke.de>
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
This commit is contained in:
renovate[bot]
2026-05-14 08:20:30 +02:00
committed by GitHub
parent 5cdb4cd2f5
commit 3df84dc09b
15 changed files with 24 additions and 32 deletions

View File

@@ -195,7 +195,7 @@ func (o *Operation) Unmarshal(dst any) error {
}
dv := reflect.ValueOf(dst)
if dv.Kind() != reflect.Ptr || dv.IsNil() {
if dv.Kind() != reflect.Pointer || dv.IsNil() {
return ErrInvalidEntityType
}

View File

@@ -202,7 +202,7 @@ func (s *Session) QueryUnmarshal(dst any,
}
dv := reflect.ValueOf(dst)
if dv.Kind() != reflect.Ptr || dv.IsNil() {
if dv.Kind() != reflect.Pointer || dv.IsNil() {
return ErrInvalidEntityType
}