diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09234f3..c04ad82 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,17 +36,17 @@ jobs: - name: Test ssh connection to sshd - 127.0.0.1 shell: bash run: | - ssh 127.0.0.1 true + ssh -o StrictHostKeyChecking=accept-new 127.0.0.1 true - name: Test ssh connection to sshd - ::1 shell: bash run: | - ssh ::1 true + ssh -o StrictHostKeyChecking=accept-new ::1 true - name: Test ssh connection to sshd - localhost shell: bash run: | - ssh localhost true + ssh -o StrictHostKeyChecking=accept-new localhost true - name: Setup ssh-agent shell: bash