From d2181df595d551db567186c418307c25efbe735e Mon Sep 17 00:00:00 2001 From: Sally Young Date: Fri, 8 Dec 2023 10:51:21 +0000 Subject: [PATCH] Disable strict host key checking for Pantheon (#350) --- scaffold/github/actions/common/ddev/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scaffold/github/actions/common/ddev/action.yml b/scaffold/github/actions/common/ddev/action.yml index 0061bbe59..24c40bf9a 100644 --- a/scaffold/github/actions/common/ddev/action.yml +++ b/scaffold/github/actions/common/ddev/action.yml @@ -45,8 +45,8 @@ runs: # Disable strict host key checking for Pantheon as ssh-keyscan will not # return a stable response. - if [ -f "pantheon.yml"]; then - echo -e "Host *.drush.in\\n\\tStrictHostKeyChecking no\\n\tLogLevel ERROR\\n" >> ~/.ssh/config + if [ -f "pantheon.yml" ]; then + echo -e "Host *.drush.in\\n\\tStrictHostKeyChecking no\\n\tLogLevel ERROR\\n" >> .ddev/homeadditions/.ssh/config fi chmod 600 .ddev/homeadditions/.ssh/config