name: renovate on: schedule: - cron: "@daily" push: branches: - main jobs: renovate: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Run Renovate # Pulled from public Docker Hub instead of ghcr.io uses: docker://renovate/renovate:37.20.2 env: RENOVATE_CONFIG_FILE: "${{ github.workspace }}/infra/renovate/config.js" LOG_LEVEL: "debug" RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}