Skip to content

Renovate

Renovate #76

Workflow file for this run

name: Renovate
on:
workflow_dispatch:
schedule:
- cron: "15 0 * * *"
push:
branches: ["main"]
paths:
- .github/renovate.json
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
RENOVATE_AUTODISCOVER: true
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Generate Token
uses: actions/create-github-app-token@v1.11.0
id: app-token
with:
app-id: "${{ secrets.BOT_APP_ID }}"
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
- name: Checkout
uses: actions/checkout@v4.2.2
with:
token: "${{ steps.app-token.outputs.token }}"
- name: Renovate
uses: renovatebot/github-action@v41.0.2
with:
configurationFile: ".github/renovate.json"
token: "${{ steps.app-token.outputs.token }}"