2023-06-01 22:52:51 +08:00
|
|
|
name: Renovate
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * *"
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
manual-trigger:
|
|
|
|
description: 'Manually trigger Renovate'
|
|
|
|
default: ''
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
renovate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-09-25 17:00:30 +08:00
|
|
|
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
|
2023-06-01 22:52:51 +08:00
|
|
|
- name: Run Renovate
|
2023-09-06 16:17:42 +08:00
|
|
|
uses: renovatebot/github-action@3cef36a9aba515d8726b491905b3bc766832e221 # v39.0.5
|
2023-06-01 22:52:51 +08:00
|
|
|
with:
|
|
|
|
useSlim: false
|
|
|
|
token: ${{ secrets.GITHUBTOKEN }}
|