Skip to content

Commit a05491a

Browse files
KI7MTclaude
andcommitted
fix: exclude XML namespace URI from publish workflow HTTPS check
Same false positive as test_security.py — http://xmldata.qrz.com is an XML namespace constant, not a network call. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 42cdeab commit a05491a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
3535
- name: Grep check — no plaintext http://
3636
run: |
37-
if grep -rn 'http://' src/ | grep -v 'localhost\|127\.0\.0\.1\|::1'; then
37+
if grep -rn 'http://' src/ | grep -v 'localhost\|127\.0\.0\.1\|::1\|xmldata\.qrz\.com'; then
3838
echo "FAIL: non-HTTPS URL found in source"
3939
exit 1
4040
fi

0 commit comments

Comments
 (0)