I'm a bit late to the answers here but - instead of a roll your own, simply use what's provided for you.
As mentioned previously, do not disable caching for everything. For instance, jQuery scripts used heavily in mvc should be cached. Actually ideally you should be using a CDN for those anyways - but my point is some content should be cached.
What I find works best here rather than sprinkling the [OutputCache] everywhere is to use a class:
[System.Web.Mvc.OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")]
public class NoCacheController : Controller
{
}
All of your controllers you want to disable caching for then inherit from this controller.
If you need to override the defaults in the NoCacheController class simply specify the cache settings on your action method and the settings on your Action method will take precedence.
[HttpGet]
[OutputCache(NoStore = true, Duration = 60, VaryByParam = "*")]
public ViewResult Index()
{
...
}