28 lines
657 B
YAML
28 lines
657 B
YAML
name: Renovate Dependency Bot
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 3 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
container: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "18"
|
|
|
|
- name: Renovate
|
|
uses: https://github.com/renovatebot/github-action@v42.0.4
|
|
with:
|
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
env:
|
|
LOG_LEVEL: debug
|
|
RENOVATE_CONFIG_FILE: renovate.json
|
|
RENOVATE_ENDPOINT: ${{ vars.RENOVATE_ENDPOINT }}
|