Skip to content

Renovate

Renovate #99

Workflow file for this run

---
name: "Renovate"
"on":
schedule:
- cron: "0 0 * * *"
workflow_dispatch: {}
jobs:
renovate-job:
runs-on: "ubuntu-24.04"
steps:
- name: "Check out repository"
uses: "actions/[email protected]"
- name: "Run Renovate"
uses: "renovatebot/[email protected]"
with:
configurationFile: "./renovate-config.js"
token: "${{ secrets.RENOVATE_BOT_TOKEN }}"
env:
RENOVATE_REPO: "${{ github.repository }}"
...