Skip to content

Commit

Permalink
now enforcing ipv6 for runners
Browse files Browse the repository at this point in the history
  • Loading branch information
kneerunjun committed Jun 25, 2024
1 parent 4a179db commit e55a757
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wkflw.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
mkdir -p ~/.ssh
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -6 -H $RASPBERRY_PI_IP >> ~/.ssh/known_hosts
ssh-keyscan -6 -H ${RASPBERRY_PI_IP} >> ~/.ssh/known_hosts
- name: Test SSH connection using IPv6
run: ssh -6 -v $RASPBERRY_PI_UNAME@$RASPBERRY_PI_IP exit
run: ssh -6 -v ${RASPBERRY_PI_UNAME}@${RASPBERRY_PI_IP} exit

0 comments on commit e55a757

Please sign in to comment.