From 51c809dedcf844cb58d334a8801d3044d0cee594 Mon Sep 17 00:00:00 2001 From: Kerim Atilgan Date: Fri, 4 Sep 2026 18:04:23 +0200 Subject: [PATCH] Auf das 22.04-Runner-Image wechseln 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) --- .gitea/workflows/deploy.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 834e700..2685473 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -9,7 +9,11 @@ on: jobs: 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: # Repository-Variablen (Settings -> Actions -> Variables)