fix(cicd): Added deduplication to wordlist updater

fixes #1254
This commit is contained in:
ItsIgnacioPortal 2025-10-11 21:03:16 -03:00
parent 38f3177476
commit 24905d3473
No known key found for this signature in database
GPG key ID: C6BE0D76C40592C2

View file

@ -30,6 +30,9 @@ jobs:
- name: Generate default-passwords.txt
run: |
./csvq -N -f CSV 'select Password from `Passwords/Default-Credentials/default-passwords.csv`' > Passwords/Default-Credentials/default-passwords.txt
sort -u --output temp.txt default-passwords.txt
rm default-passwords.txt
mv temp.txt default-passwords.txt
- name: Switching from HTTPS to SSH
run: git remote set-url origin git@github.com:${{ github.repository }}.git
- name: Check for changes