Testing Build, Publish & Preview Release / Build, Publish Packages (Testing) & Create Preview Release (push) Skipped
TruffleHog Secret Scan / TruffleHog (push) Successful in 25s
Code Quality (Auto-Format & Clippy-Fix) / Formatierung & Clippy automatisch beheben (push) Successful in 56s
Security Scans / Trivy & OSV-Scanner (push) Successful in 1m1s
Die Option ist repo-only nicht erlaubt und wurde in der Renovate-Workflow- Umgebung (RENOVATE_ALLOW_CUSTOM_CRATE_REGISTRIES) gesetzt. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0156cWd2mGWNQU1kBbBPWpD7
28 lines
1007 B
YAML
28 lines
1007 B
YAML
name: Renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 * * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
renovate:
|
|
name: Dependency-Updates prüfen & Pull Requests erstellen
|
|
runs-on: ubuntu-latest
|
|
container: ghcr.io/renovatebot/renovate:44.82.3
|
|
steps:
|
|
- name: Renovate ausführen
|
|
run: renovate
|
|
env:
|
|
RENOVATE_PLATFORM: gitea
|
|
RENOVATE_ENDPOINT: ${{ gitea.server_url || github.server_url }}/api/v1/
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
RENOVATE_REPOSITORIES: ${{ gitea.repository || github.repository }}
|
|
RENOVATE_AUTODISCOVER: "false"
|
|
RENOVATE_ALLOW_CUSTOM_CRATE_REGISTRIES: "true"
|
|
RENOVATE_GIT_AUTHOR: "Renovate Bot <renovate-bot@creativedragonslayer.de>"
|
|
RENOVATE_HOST_RULES: >-
|
|
[{"hostType":"cargo","matchHost":"${{ gitea.server_url || github.server_url }}","token":"${{ secrets.RENOVATE_TOKEN }}"}]
|
|
GITHUB_COM_TOKEN: ${{ secrets.GH_RENOVATE_TOKEN }}
|
|
LOG_LEVEL: info
|