Update .gitea/workflows/renovate.yml
This commit is contained in:
@@ -15,10 +15,20 @@ jobs:
|
|||||||
- name: Git Setup
|
- name: Git Setup
|
||||||
run: |
|
run: |
|
||||||
mkdir -p ~/.ssh
|
mkdir -p ~/.ssh
|
||||||
echo 'Host gitea.akshun-lab.cc' >> ~/.ssh/config
|
{
|
||||||
echo ' User git' >> ~/.ssh/config
|
echo "Host gitea.akshun-lab.cc"
|
||||||
echo ' Port 222' >> ~/.ssh/config
|
echo " HostName gitea.akshun-lab.cc"
|
||||||
cat ~/.ssh/config
|
echo " User git"
|
||||||
|
echo " Port 222"
|
||||||
|
echo " StrictHostKeyChecking yes"
|
||||||
|
} >> ~/.ssh/config
|
||||||
|
chmod 600 ~/.ssh/config
|
||||||
|
|
||||||
|
- name: SSH known_hosts setup
|
||||||
|
run: |
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
ssh-keyscan -p 222 gitea.akshun-lab.cc >> ~/.ssh/known_hosts
|
||||||
|
chmod 600 ~/.ssh/known_hosts
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v5
|
||||||
|
|||||||
Reference in New Issue
Block a user