Files
renovate/.gitea/workflows/renovate.yaml
T
nate.lubitz d6ff2d45f5
renovate / renovate (push) Failing after 8s
another try
2026-06-22 22:59:16 +10:00

24 lines
552 B
YAML

name: renovate
on:
schedule:
- cron: "@daily"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Renovate
# Pulled from public Docker Hub instead of ghcr.io
uses: docker://renovate/renovate:37.20.2
env:
RENOVATE_CONFIG_FILE: "infra/renovate/config.js" # Just the relative path from repository root
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}