bddfa62307
The Renovate workflow was failing because: 1. The required 'token' input was not provided 2. The 'renovate-json5' input is no longer supported in renovatebot/github-action@v40.3.0 This fix restores automated dependency updates for the repo. Resolves: CI failures on Renovate workflow
15 lines
316 B
YAML
15 lines
316 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
|