23db059a23
The Renovate workflow was failing because the token parameter
was removed in commit 0955832. This commit restores the
required GITHUB_TOKEN parameter so Renovate can authenticate
and create PRs for dependency updates.
Co-Authored-By: Paperclip <noreply@paperclip.ing>
16 lines
347 B
YAML
16 lines
347 B
YAML
name: Renovate
|
|
on:
|
|
schedule:
|
|
- cron: '0 3 * * *'
|
|
workflow_dispatch:
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: renovatebot/github-action@v40.3.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
configurationFile: renovate.json
|
|
renovate-json5: true
|