Is YAML.load secure within a controller?

I'm using a YAML load in the following manner inside of a controller:

          myObject=YAML.load(request.raw_post)

Are there any security concerns with this method?

Thanks in advance!