Skip to content

Renovate

Renovate #387

Workflow file for this run

name: Renovate
on:
schedule:
- cron: "0 12 * * *" # noon daily
workflow_dispatch:
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Setup node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
- name: Create GitHub App Token
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1
id: app-token
with:
app-id: ${{ secrets.PR_BOT_APP_ID }}
private-key: ${{ secrets.PR_BOT_PRIVATE_KEY }}
- name: Renovate
uses: renovatebot/github-action@a1ed1d0adddfdf138192d1fbe3150a80094dee6a # v40.3.1
with:
configurationFile: .github/renovate-sh.json
token: ${{ steps.app-token.outputs.token }}
# env:
# LOG_LEVEL: debug