Skip to content

Commit

Permalink
ci: host key
Browse files Browse the repository at this point in the history
  • Loading branch information
leoslf committed Jun 13, 2024
1 parent 469b528 commit c8bb0f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c8bb0f0

Please sign in to comment.