Auf das 22.04-Runner-Image wechseln
Deploy auf den Timer-Server / deploy (push) Failing after 1m20s

Im 24.04-Image schlagen auf diesem Runner Syscalls fehl, die neuere
Programme benutzen: actions/checkout starb mit 'read ENOTCONN', rsync
bricht mit 'pipe: Permission denied' ab. Beides deutet auf das seccomp-
Profil des Docker-Hosts, nicht auf den Workflow.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-09-04 18:04:23 +02:00
co-authored by Claude Opus 5
parent c2e9f4d2d2
commit 51c809dedc
+5 -1
View File
@@ -9,7 +9,11 @@ on:
jobs: jobs:
deploy: deploy:
runs-on: ubuntu-latest # Nicht ubuntu-latest (24.04): in dem Image scheitern auf diesem Runner
# moderne Syscalls - actions/checkout stirbt mit "read ENOTCONN", rsync
# mit "pipe: Permission denied". Ursache ist das seccomp-Profil des
# Docker-Hosts, nicht der Workflow. Das aeltere Image kommt damit klar.
runs-on: ubuntu-22.04
env: env:
# Repository-Variablen (Settings -> Actions -> Variables) # Repository-Variablen (Settings -> Actions -> Variables)