Refactored the docker run command in the run-in-docker-action to use environment variables instead of direct GitHub context interpolation.
Directly embedding context data like github.workspace or inputs.command into shell scripts can lead to injection if the data contains unexpected characters. Mapping these to environment variables and referencing them within the script is more robust.
Tested this change by ensuring the variable mapping correctly passes data to the docker container.