The actions() is not required.
You can do something like:
var input = $('#someInput');
input.sendKeys(protractor.Key.ENTER);
Update: some people have complained that you are not sending the enter to browser. If you want to do this just change your selector:
$('body').sendKeys(protractor.Key.ENTER);