2024-03-14 04:15:07 +02:00
|
|
|
name: Renovate
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 1 5,11 *'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
renovate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 15
|
|
|
|
steps:
|
2024-05-02 22:52:52 +02:00
|
|
|
- uses: actions/create-github-app-token@v1
|
|
|
|
id: app-token
|
|
|
|
with:
|
|
|
|
app-id: ${{ vars.BOT_APP_ID }}
|
|
|
|
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
|
2024-03-14 04:15:07 +02:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup node
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
- name: Renovate
|
2024-05-03 00:15:20 +02:00
|
|
|
uses: renovatebot/github-action@v40.1.11
|
2024-03-14 04:15:07 +02:00
|
|
|
with:
|
|
|
|
configurationFile: .github/renovate.json5
|
2024-05-02 22:52:52 +02:00
|
|
|
token: ${{ steps.app-token.outputs.token }}
|
2024-03-14 04:15:07 +02:00
|
|
|
env:
|
|
|
|
LOG_LEVEL: debug
|