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
|
2024-06-13 14:56:41 +08:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-06-01 22:52:51 +08:00
|
|
|
- name: Run Renovate
|
2024-08-05 18:18:08 +08:00
|
|
|
uses: renovatebot/github-action@0c94129d48b4e92addf23686b8a735b3057a0448 # v40.2.5
|
2023-06-01 22:52:51 +08:00
|
|
|
with:
|
|
|
|
useSlim: false
|
|
|
|
token: ${{ secrets.GITHUBTOKEN }}
|