Skip to content

Renovate

Renovate #2825

Workflow file for this run

name: Renovate
on:
schedule:
- cron: "0/20 0-6 * * 0,6"
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
with:
app_id: ${{ secrets.RENOVATE_APP_ID }}
private_key: ${{ secrets.RENOVATE_APP_PEM }}
- name: Checkout
uses: actions/checkout@v4
- name: Update dependencies
uses: renovatebot/github-action@21d88b0bf0183abcee15f990011cca090dfc47dd # v40.1.12
with:
configurationFile: .github/renovate.json5
token: '${{ steps.generate_token.outputs.token }}'
env:
LOG_LEVEL: 'debug'