We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8fdf6a commit 7003692Copy full SHA for 7003692
.github/workflows/update.yml
@@ -26,6 +26,12 @@ jobs:
26
- name: Send Webhook to Discord about updating Ruby
27
run: |
28
curl -X POST -H 'Content-type: application/json' --data '{"content":"Updating Ruby..."}' ${{ secrets.DISCORD_WEBHOOK }}
29
+ - name: SSH Known hosts ignore
30
+ run: |
31
+ mkdir -p ~/.ssh
32
+ touch ~/.ssh/known_hosts
33
+ ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
34
+ echo "StrictHostKeyChecking no" >> ~/.ssh/config
35
- name: Run Ansible Playbook
36
37
#we don't have ssh keys so we need to use the password
0 commit comments