I’m trying to migrate one of my builds to 2.0. The build has a clone step of an external (and private) repository that contains some infra code for the build to execute. Original circle.yml is working just fine: dependencies: pre: - git clone git@github.com:OrgName/Repo.git ~/RepoLocation In the new config.yml, I tried to do the same: … steps: - run: name: Download HSConfiguration command: git clo