From c091ceb5e58827a8d267eacd225d684ba672d293 Mon Sep 17 00:00:00 2001 From: Ketan Reddy Date: Fri, 6 Feb 2026 16:36:18 -0800 Subject: [PATCH] disable StrictHostKeyChecking for github --- .circleci/config.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 25e14c85..6921e3ed 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,6 +21,14 @@ executors: TZ: "/usr/share/zoneinfo/America/Los_Angeles" commands: + + setup_auth: + description: Configure authentication for deployments + steps: + - run: mkdir -p ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config + - run: git config --global user.name "Intuit Service" + - run: git config --global user.email "opensource-svc@intuit.com" + auto_shipit: description: Perform Auto shipit steps: @@ -32,7 +40,7 @@ commands: - v1-bazel-cache-core-{{ .Branch }}-{{ .Revision }} - v1-bazel-cache-core-{{ .Branch }} - v1-bazel-cache-core-main - + - setup_auth - run: echo "//registry.npmjs.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc - run: echo -e $GPG_KEY | gpg --import --batch - run: |