Files
renovate/.gitea/workflows/renovate.yaml
T
nate.lubitz 12604867bb
renovate / renovate (push) Failing after 7s
update job
2026-06-22 22:55:53 +10:00

25 lines
611 B
YAML

name: renovate
on:
schedule:
- cron: "@daily"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
# REMOVED: job-level container block to avoid the runner's strict auth loop
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Renovate
# Uses the Docker container directly as a step action
uses: docker://ghcr.io/renovatebot/renovate:37.20.2
env:
RENOVATE_CONFIG_FILE: "/workspace/infra/renovate/config.js"
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}