Update .gitea/workflows/renovate.yml

This commit is contained in:
2025-10-24 18:30:20 +00:00
parent 4b255115d7
commit ad24fe40d3

View File

@@ -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