From 421d28add0e56b62a07bfccc4e7715cfa8a5d3f7 Mon Sep 17 00:00:00 2001 From: marcvanandel Date: Mon, 11 Dec 2023 17:42:08 +0100 Subject: [PATCH] disable check known_hosts Bug reported and PR to resolve: https://github.com/yesolutions/mirror-action/pull/19 --- .github/workflows/main.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 31ec515..33f1a8f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,8 +13,6 @@ jobs: with: REMOTE: 'ssh://git@git-ssh.dev.cloud.kadaster.nl:443/dst/dst-secured-sparql-endpoint-mirror.git' GIT_SSH_PRIVATE_KEY: ${{ secrets.GIT_SSH_PRIVATE_KEY }} - GIT_SSH_KNOWN_HOSTS: ${{ secrets.GIT_SSH_KNOWN_HOSTS }} - # debugging known_hosts issues - DEBUG: "true" - # see if this works ... 'cause the known_hosts is not as easy as I would hope :smirk: - # GIT_SSH_NO_VERIFY_HOST: "true" + # disable known_hosts until PR is merged: https://github.com/yesolutions/mirror-action/pull/19 + GIT_SSH_NO_VERIFY_HOST: "true" + # GIT_SSH_KNOWN_HOSTS: ${{ secrets.GIT_SSH_KNOWN_HOSTS }}