name: Renovate on: schedule: - cron: '0 5 * * *' # daily 05:00 UTC workflow_dispatch: concurrency: group: ${{ github.workflow }} cancel-in-progress: false permissions: contents: write pull-requests: write issues: write jobs: renovate: runs-on: ubuntu-latest timeout-minutes: 30 steps: - name: Checkout repository uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 with: fetch-depth: 1 - name: Run Renovate uses: renovatebot/github-action@8d75b92f43899d483728e9a8a7fd44238020f6e6 # v46.1.2 with: configurationFile: .github/renovate.json token: ${{ secrets.RENOVATE_TOKEN || secrets.GITHUB_TOKEN }} env: LOG_LEVEL: debug