commit 01d3e87a8ea7cac14bab195668aeb244fc37bdf7
parent b4f96ce6863582133e23dbc667255763198e54d7
Author: MTRNord <mtrnord1@gmail.com>
Date: Tue, 15 Apr 2025 11:07:17 +0200
Ensure openssh-client is available
Diffstat:
3 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/cflite_batch.yml b/.github/workflows/cflite_batch.yml
@@ -19,6 +19,7 @@ jobs:
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
+ sudo apt-get install -y openssh-client
mkdir -p /home/runner/.ssh
ssh-keyscan github.com >> /home/runner/.ssh/known_hosts
# STORAGE_SSH_KEY is the name of the repository secret
diff --git a/.github/workflows/cflite_cron.yml b/.github/workflows/cflite_cron.yml
@@ -11,6 +11,7 @@ jobs:
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
+ sudo apt-get install -y openssh-client
mkdir -p /home/runner/.ssh
ssh-keyscan github.com >> /home/runner/.ssh/known_hosts
# STORAGE_SSH_KEY is the name of the repository secret
@@ -44,6 +45,7 @@ jobs:
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
+ sudo apt-get install -y openssh-client
mkdir -p /home/runner/.ssh
ssh-keyscan github.com >> /home/runner/.ssh/known_hosts
# STORAGE_SSH_KEY is the name of the repository secret
diff --git a/.github/workflows/cflite_pr.yml b/.github/workflows/cflite_pr.yml
@@ -22,6 +22,7 @@ jobs:
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
+ sudo apt-get install -y openssh-client
mkdir -p /home/runner/.ssh
ssh-keyscan github.com >> /home/runner/.ssh/known_hosts
# STORAGE_SSH_KEY is the name of the repository secret