Skip to content

Renovate

Renovate #8093

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Renovate
permissions: { contents: read }
on:
schedule: [{ cron: '0 * * * *' }]
workflow_dispatch:
inputs:
dry-run:
description: Dry Run
default: false
required: false
type: boolean
log-level:
description: Log Level
type: choice
default: debug
options: [debug, info]
required: true
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Generate Token
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
id: app-token
with:
app-id: '${{ secrets.BOT_APP_ID }}'
private-key: '${{ secrets.BOT_APP_PRIVATE_KEY }}'
- name: Run Renovate
uses: renovatebot/github-action@5712c6a41dea6cdf32c72d92a763bd417e6606aa # v44.0.5
env:
LOG_LEVEL: "${{ inputs.log-level || 'debug' }}"
RENOVATE_AUTODISCOVER: true
RENOVATE_AUTODISCOVER_FILTER: '${{ github.repository }}'
RENOVATE_DRY_RUN: '${{ inputs.dry-run == true }}'
with:
token: '${{ steps.app-token.outputs.token }}'