name: Renovate Dependencies
on:
schedule:
# Run on the first day of every month at 04:00 UTC
- cron: '0 4 1 * *'
workflow_dispatch: # Allow manual trigger
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Renovate
uses: renovatebot/github-action@v40.3.2
with:
configurationFile: .github/renovate.json
token: ${{ secrets.RENOVATE_TOKEN }}
env:
LOG_LEVEL: info