2022-02-14 16:58:01 -05:00
|
|
|
---
|
|
|
|
name: Renovate
|
|
|
|
on:
|
|
|
|
schedule:
|
2022-02-14 17:03:03 -05:00
|
|
|
- cron: "* * 5,20 * *" # Every 5th and 20th of the month
|
|
|
|
workflow_dispatch:
|
2022-02-14 16:58:01 -05:00
|
|
|
jobs:
|
|
|
|
renovate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Get token
|
|
|
|
id: get_token
|
|
|
|
uses: machine-learning-apps/actions-app-token@master
|
|
|
|
with:
|
|
|
|
APP_PEM: ${{ secrets.RENOVATEBOT_SECRET }}
|
|
|
|
APP_ID: ${{ secrets.RENOVATEBOT_APP_ID }}
|
|
|
|
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2.0.0
|
|
|
|
|
|
|
|
- name: Self-hosted Renovate
|
2022-02-14 17:33:55 -05:00
|
|
|
uses: renovatebot/github-action@v31.81.3
|
2022-02-14 16:58:01 -05:00
|
|
|
with:
|
|
|
|
configurationFile: .github/renovate.json
|
2022-02-14 17:03:03 -05:00
|
|
|
token: "x-access-token:${{ steps.get_token.outputs.app_token }}"
|
2022-02-14 17:33:55 -05:00
|
|
|
# env:
|
|
|
|
# LOG_LEVEL: "debug"
|