From fa58c66a0de411292f1e0f2ddafd9ef6e0616a69 Mon Sep 17 00:00:00 2001 From: ItsIgnacioPortal <46269721+ItsIgnacioPortal@users.noreply.github.com> Date: Sat, 7 Feb 2026 15:20:27 -0300 Subject: [PATCH] fix(cicd): Fixed another bad filepath --- .github/workflows/wordlist-updater_api-endpoints-res.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wordlist-updater_api-endpoints-res.yml b/.github/workflows/wordlist-updater_api-endpoints-res.yml index 27e2ced12..9a7c09c21 100644 --- a/.github/workflows/wordlist-updater_api-endpoints-res.yml +++ b/.github/workflows/wordlist-updater_api-endpoints-res.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Generate api-endpoints-res.txt - run: cd Discovery/Web-Content/api/ && cat api_seen_in_wild.txt actions.txt objects.txt actions-uppercase.txt actions-lowercase.txt objects-uppercase.txt objects-lowercase.txt | awk '! seen[$0]++' > api-endpoints-res.txt + run: cd Discovery/Web-Content/api/ && cat api-seen-in-wild.txt actions.txt objects.txt actions-uppercase.txt actions-lowercase.txt objects-uppercase.txt objects-lowercase.txt | awk '! seen[$0]++' > api-endpoints-res.txt - name: Switching from HTTPS to SSH run: git remote set-url origin git@github.com:${{ github.repository }}.git - name: Check for changes