Check a Stored Procedure Last Runtime

SELECT DB_NAME(database_id)
,OBJECT_NAME(object_id)
,cached_time
,last_execution_time
,execution_count
FROM sys.dm_exec_procedure_stats

WHERE object_name( object_id) =’my Stored Procedure Name’