name: renovate on: schedule: - cron: "@daily" workflow_dispatch: jobs: renovate: runs-on: ubuntu-latest container: image: renovate/renovate:41.97.7 steps: - name: Git Setup run: | mkdir -p ~/.ssh echo 'Host gitea.akshun-lab.cc' >> ~/.ssh/config echo ' User git' >> ~/.ssh/config echo ' Port 222' >> ~/.ssh/config cat ~/.ssh/config - name: Checkout repository uses: actions/checkout@v4 with: ssh-strict: false ssh-key: ${{ secrets.SSH_KEY }} github-server-url: 'https://gitea.akshun-lab.cc' repository: aggarwalakshun/k3s - name: Run Renovate env: RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} GITHUB_COM_TOKEN: ${{ secrets.PAT_TOKEN }} run: | renovate