2022-06-16 10:29:35 +00:00
|
|
|
name: Renovate
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 */6 * * *"
|
|
|
|
jobs:
|
|
|
|
renovate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-10-04 12:16:42 +00:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
2022-06-16 10:29:35 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.BOT_TOKEN }}
|
|
|
|
- name: Self-hosted Renovate
|
2022-11-13 18:01:36 +00:00
|
|
|
uses: renovatebot/github-action@e3e5485adcef612196fb016d8b7c432c643f747b # v34.24.0
|
2022-06-16 10:29:35 +00:00
|
|
|
with:
|
|
|
|
configurationFile: .github/renovate-config.js
|
|
|
|
token: ${{ secrets.BOT_TOKEN }}
|