fix: use IP 192.168.68.17:3000 instead of git.sysloggh.net hostname for CI checkout
PR Pipeline — Authorize → Validate → Review → Merge / auth (pull_request) Successful in 1s
PR Pipeline — Authorize → Validate → Review → Merge / validate (pull_request) Failing after 1s
PR Pipeline — Authorize → Validate → Review → Merge / lint (pull_request) Has been skipped
PR Pipeline — Authorize → Validate → Review → Merge / ai-review (pull_request) Has been skipped
PR Pipeline — Authorize → Validate → Review → Merge / gate (pull_request) Has been skipped

The Gitea Actions runner cannot resolve the internal hostname
git.sysloggh.net during checkout. Using the direct IP address
resolves the DNS resolution issue in CI pipeline steps.
This commit is contained in:
Agent Zero
2026-07-06 18:54:12 -04:00
parent 5aa93117de
commit 8f89603c31
+4 -4
View File
@@ -21,7 +21,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
run: | run: |
git clone --depth=50 "http://git.sysloggh.net/${{ gitea.repository }}.git" . git clone --depth=50 "http://192.168.68.17:3000/${{ gitea.repository }}.git" .
git fetch origin "${{ gitea.ref }}" --depth=50 git fetch origin "${{ gitea.ref }}" --depth=50
git checkout "${{ gitea.sha }}" git checkout "${{ gitea.sha }}"
@@ -34,7 +34,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
run: | run: |
git clone --depth=50 "http://git.sysloggh.net/${{ gitea.repository }}.git" . git clone --depth=50 "http://192.168.68.17:3000/${{ gitea.repository }}.git" .
git fetch origin "${{ gitea.ref }}" --depth=50 git fetch origin "${{ gitea.ref }}" --depth=50
git checkout "${{ gitea.sha }}" git checkout "${{ gitea.sha }}"
@@ -64,7 +64,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
run: | run: |
git clone --depth=50 "http://git.sysloggh.net/${{ gitea.repository }}.git" . git clone --depth=50 "http://192.168.68.17:3000/${{ gitea.repository }}.git" .
git fetch origin "${{ gitea.ref }}" --depth=50 git fetch origin "${{ gitea.ref }}" --depth=50
git checkout "${{ gitea.sha }}" git checkout "${{ gitea.sha }}"
@@ -77,7 +77,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
run: | run: |
git clone --depth=50 "http://git.sysloggh.net/${{ gitea.repository }}.git" . git clone --depth=50 "http://192.168.68.17:3000/${{ gitea.repository }}.git" .
git fetch origin "${{ gitea.ref }}" --depth=50 git fetch origin "${{ gitea.ref }}" --depth=50
git checkout "${{ gitea.sha }}" git checkout "${{ gitea.sha }}"