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 env: GO_VERSION: '1.26.2' jobs: renovate: runs-on: ubuntu-latest timeout-minutes: 30 steps: - name: Checkout repository uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 with: fetch-depth: 1 - name: Set up Go uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6 with: go-version: ${{ env.GO_VERSION }} - name: Run Renovate uses: renovatebot/github-action@83ec54fee49ab67d9cd201084c1ff325b4b462e4 # v46.1.10 with: configurationFile: .github/renovate.json token: ${{ secrets.RENOVATE_TOKEN || secrets.GITHUB_TOKEN }} env: LOG_LEVEL: debug