File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import (
2020 actions_service "code.gitea.io/gitea/services/actions"
2121 "code.gitea.io/gitea/services/context"
2222 notify_service "code.gitea.io/gitea/services/notify"
23+
2324 "xorm.io/builder"
2425)
2526
Original file line number Diff line number Diff line change @@ -58,5 +58,5 @@ type swaggerWorkflowRunRerunRequest struct {
5858// swagger:model WorkflowRunLogsRequest
5959type swaggerWorkflowRunLogsRequest struct {
6060 // Log cursors for incremental log streaming
61- LogCursors []map [string ]interface {} `json:"logCursors"`
61+ LogCursors []map [string ]any `json:"logCursors"`
6262}
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ func TestAPIActionsGetWorkflowRunLogsStream(t *testing.T) {
297297 resp := MakeRequest (t , req , http .StatusOK )
298298
299299 // Parse response to verify structure
300- var logResp map [string ]interface {}
300+ var logResp map [string ]any
301301 err := json .Unmarshal (resp .Body .Bytes (), & logResp )
302302 assert .NoError (t , err )
303303 assert .Contains (t , logResp , "stepsLog" )
You can’t perform that action at this time.
0 commit comments