I'm getting an error for a shell command in a run step that creates a new branch during a deployment process:
git checkout -b "release-${VERSION}"
The error is:
Use of "git checkout" in a bash script with a potentially dangerous reference.
What are your thoughts? Is there cause for concern when creating a branch with a potentially user-controlled name?
I'm getting an error for a shell command in a
runstep that creates a new branch during a deployment process:git checkout -b "release-${VERSION}"The error is:
What are your thoughts? Is there cause for concern when creating a branch with a potentially user-controlled name?