Update .gitea/workflows/codeant.yml
All checks were successful
Codeant Security Scan / codeant-scan (push) Successful in 55s

This commit is contained in:
2026-03-29 16:37:45 +00:00
parent d08b9b3721
commit 404856622f

View File

@@ -45,11 +45,14 @@ jobs:
git fetch origin main
git checkout -b codeant-fullscan
# 🔥 TOUCH ALL FILES (this is the key)
find . -type f -not -path "./.git/*" -exec touch {} +
git checkout -b codeant-fullscan
# 🔥 Modify ALL files (real change, not just timestamp)
find . -type f \
-not -path "./.git/*" \
-exec sh -c 'echo "" >> "$1"' _ {} \;
git add .
git commit -m "full repo scan"