From daaf79e7210a9868f7c3404974e8910d06ab4dd3 Mon Sep 17 00:00:00 2001 From: Tianyu Liu Date: Fri, 23 May 2025 11:55:25 +0200 Subject: [PATCH] Looks like need to use netcat-openbsd --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index f46defc..61aeb24 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -36,7 +36,7 @@ jobs: - name: Start a dummy server listening on 443 run: | apt update - apt install -y netcat + apt install -y netcat-openbsd while true; do echo "HTTP/1.1 200 OK\\n\\nHello from dummy server" | nc -l -p 443 -q 1 done