Update to Go 1.23 (#5216)

* Update to Go 1.23

* Update golangci-lint-action

* Fix new errors from updated linter

* Bump golangci-lint to v1.60.1
This commit is contained in:
Joe Kralicky 2024-08-14 14:12:01 -04:00 committed by GitHub
parent e3e7de741c
commit 8001077706
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 20 additions and 20 deletions

View file

@ -302,7 +302,7 @@ func (m mockDataBrokerServiceClient) Patch(ctx context.Context, in *databroker.P
existing := getResponse.GetRecord()
if err := storage.PatchRecord(existing, record, in.GetFieldMask()); err != nil {
return nil, status.Errorf(codes.Unknown, err.Error())
return nil, status.Error(codes.Unknown, err.Error())
}
records = append(records, record)