(actions []EngineAction)
| 2301 | } |
| 2302 | |
| 2303 | func actionKinds(actions []EngineAction) []ActionKind { |
| 2304 | out := make([]ActionKind, 0, len(actions)) |
| 2305 | for _, action := range actions { |
| 2306 | out = append(out, action.Kind()) |
| 2307 | } |
| 2308 | return out |
| 2309 | } |
| 2310 | |
| 2311 | func findUpdateAction(plan Plan) *UpdateChartAction { |
| 2312 | for _, action := range plan.Actions { |
no test coverage detected
searching dependent graphs…