servala-portal/.forgejo/workflows/renovate.yaml

30 lines
703 B
YAML
Raw Normal View History

name: Renovate Dependency Bot
on:
schedule:
- cron: "0 3 * * *"
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
2025-05-27 13:37:43 +02:00
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
2025-05-27 13:27:29 +02:00
uses: https://github.com/renovatebot/github-action@v42.0.4
with:
token: ${{ secrets.RENOVATE_TOKEN }}
env:
2025-05-27 14:48:40 +02:00
LOG_LEVEL: info
RENOVATE_ENDPOINT: ${{ vars.RENOVATE_ENDPOINT }}
2025-05-27 14:09:02 +02:00
RENOVATE_PLATFORM: gitea
2025-05-27 14:48:40 +02:00
RENOVATE_REPOSITORIES: ${{ github.repository }}