diff --git a/pkg/runner/action.go b/pkg/runner/action.go index d86b7cc..1baab6c 100644 --- a/pkg/runner/action.go +++ b/pkg/runner/action.go @@ -45,7 +45,7 @@ func readActionImpl(ctx context.Context, step *model.Step, actionDir string, act allErrors := []error{} addError := func(fileName string, err error) { if err != nil { - allErrors = append(allErrors, fmt.Errorf("failed to read '%s' from action '%s' with path '%s' of step %w", fileName, step.String(), actionPath, err)) + allErrors = append(allErrors, fmt.Errorf("failed to read '%s' from action '%s' with path '%s' of step: %w", fileName, step.String(), actionPath, err)) } else { // One successful read, clear error state allErrors = nil