servala-portal/.forgejo/workflows/renovate.yaml
Tobias Brunner 4ef2f9a31b
Some checks failed
Build and Deploy Staging / deploy (push) Has been cancelled
Build and Deploy Staging / build (push) Has been cancelled
Tests / test (push) Has been cancelled
use full url for action location
2025-05-27 13:27:29 +02:00

27 lines
610 B
YAML

name: Renovate Dependency Bot
on:
schedule:
- cron: "0 3 * * *"
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-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: info
RENOVATE_CONFIG_FILE: renovate.json
RENOVATE_ENDPOINT: ${{ vars.RENOVATE_ENDPOINT }}