Skip to content

Commit 41de107

Browse files
committed
Run make fmt
1 parent d0849dc commit 41de107

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

routers/api/v1/repo/actions_run.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

routers/api/v1/swagger/action.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ type swaggerWorkflowRunRerunRequest struct {
5858
// swagger:model WorkflowRunLogsRequest
5959
type swaggerWorkflowRunLogsRequest struct {
6060
// Log cursors for incremental log streaming
61-
LogCursors []map[string]interface{} `json:"logCursors"`
61+
LogCursors []map[string]any `json:"logCursors"`
6262
}

tests/integration/api_actions_run_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)