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
|
2023-01-05 18:01:53 +00:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2022-06-16 10:29:35 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.BOT_TOKEN }}
|
|
|
|
- name: Self-hosted Renovate
|
2023-02-24 18:01:56 +00:00
|
|
|
uses: renovatebot/github-action@3cae5833b4ae40ae8e4b9921c5c1a32adeda490b # v34.152.4
|
2022-06-16 10:29:35 +00:00
|
|
|
with:
|
|
|
|
configurationFile: .github/renovate-config.js
|
|
|
|
token: ${{ secrets.BOT_TOKEN }}
|