RSA fingerprint missing for github.com

The authenticity of host 'github.com (192.30.253.112)' can't be established.
RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)? 
No output has been received in the last 10m0s, this potentially indicates a stalled build or something wrong with the build itself.

https://travis-ci.com/jongear/minidrone-ble/jobs/170325754#L213-L217

Works when adding

‘echo -e “Host *\n\tStrictHostKeyChecking no\n” >> ~/.ssh/config’

How are you trying to connect to GitHub? Perhaps via git+ssh instead of https?

I’m using semantic-release to tag and drop a released copy of my npm package back onto my github repo. I’m actually not sure what semantic-release is using. I believe it’s ssh but not certain.

Hmm. Documentation indicates that it’s using HTTPS, but the error message (and your workaround) is not consistent with HTTPS. :-/

Yeah, I’m not really sure why it’s suddenly having issues. I’ve used semantic-release on other projects without any issues. However, the main difference is on those projects I did not use matrix. For this project I need to be certain it builds on different versions of node on different operating systems so I employed a matrix. Maybe that’s the differentiator from a standard travis build that doesn’t require the StrictHostKeyChecking trick to allow semantic-release to work