From 351f36211ab28c11d260c92be9fedb57d751a163 Mon Sep 17 00:00:00 2001 From: adkinsrs Date: Thu, 16 Nov 2023 16:32:26 -0500 Subject: [PATCH] fixing path for cgi files --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e0cb351e..327f3220 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -64,7 +64,7 @@ jobs: - name: Rename all CGI files to have Python extension shell: bash - run: rename 's/\.cgi/\.py/' *.cgi + run: rename 's/\.cgi/\.py/' www/cgi/*.cgi # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL