From fae9cddb8881d2483878ce04e48cc3c807e5b877 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Thu, 12 Jun 2025 23:52:54 -0600 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6798bf..33299b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,20 +24,10 @@ jobs: runs-on: self-hosted container: image: ghcr.io/slipstreamm/disagreement-image:latest - options: --user 1001:1001 --network host + network: host + options: --user 1001:1001 steps: - - name: Who am I - run: id - - name: Check DNS - run: nslookup github.com - - name: Try git clone - run: | - apk add --no-cache git ca-certificates - git clone https://github.com/Slipstreamm/disagreement.git /tmp/testclone - - name: Test outbound TCP 443 - run: apk add --no-cache busybox-extras && timeout 5 nc -vz github.com 443 || echo "connection failed" - - name: Checkout code uses: actions/checkout@v4