From 63aa3a0fbad511190b4fa68a7223ee0f692973f7 Mon Sep 17 00:00:00 2001 From: JarshiganK Date: Mon, 5 Jan 2026 20:44:10 +0530 Subject: [PATCH 1/4] Refactor CodeQL workflow for mannual Updated CodeQL workflow to improve build steps and permissions. --- .github/workflows/codeql.yml | 122 ++++++++++++++--------------------- 1 file changed, 49 insertions(+), 73 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index af51f90..dacdc1e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,41 +1,21 @@ -# For most projects, this workflow file will not need changing; you simply need -# to commit it to your repository. -# -# You may wish to alter this file to override the set of languages analyzed, -# or to provide custom queries or build logic. -# -# ******** NOTE ******** -# We have attempted to detect the languages in your repository. Please check -# the `language` matrix defined below to confirm you have the correct set of -# supported CodeQL languages. -# name: "CodeQL Advanced" on: push: - branches: [ "master" ] + branches: ["master"] pull_request: - branches: [ "master" ] + branches: ["master"] schedule: - - cron: '37 0 * * 5' + - cron: "37 0 * * 5" jobs: analyze: name: Analyze (${{ matrix.language }}) - # Runner size impacts CodeQL analysis time. To learn more, please see: - # - https://gh.io/recommended-hardware-resources-for-running-codeql - # - https://gh.io/supported-runners-and-hardware-resources - # - https://gh.io/using-larger-runners (GitHub.com only) - # Consider using larger runners or machines with greater resources for possible analysis time improvements. - runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + runs-on: ubuntu-latest + permissions: - # required for all workflows security-events: write - - # required to fetch internal or private CodeQL packs packages: read - - # only required for workflows in private repositories actions: read contents: read @@ -43,57 +23,53 @@ jobs: fail-fast: false matrix: include: - - language: javascript-typescript - build-mode: none - # CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift' - # Use `c-cpp` to analyze code written in C, C++ or both - # Use 'java-kotlin' to analyze code written in Java, Kotlin or both - # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both - # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis, - # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. - # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how - # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages + - language: javascript-typescript + build-mode: manual + steps: - - name: Checkout repository - uses: actions/checkout@v4 + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: "20" + + - name: Initialize CodeQL + uses: github/codeql-action/init@v4 + with: + languages: ${{ matrix.language }} + build-mode: ${{ matrix.build-mode }} + # Optional: + # queries: security-extended,security-and-quality - # Add any setup steps before running the `github/codeql-action/init` action. - # This includes steps like installing compilers or runtimes (`actions/setup-node` - # or others). This is typically only required for manual builds. - # - name: Setup runtime (example) - # uses: actions/setup-example@v1 + - name: Run manual build steps (npm) + if: matrix.build-mode == 'manual' + shell: bash + run: | + set -euo pipefail - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v4 - with: - languages: ${{ matrix.language }} - build-mode: ${{ matrix.build-mode }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. + echo "Node: $(node -v)" + echo "npm: $(npm -v)" - # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs - # queries: security-extended,security-and-quality + # Install dependencies + if [ -f package-lock.json ]; then + echo "package-lock.json found -> npm ci" + npm ci + else + echo "No package-lock.json -> npm install" + npm install + fi - # If the analyze step fails for one of the languages you are analyzing with - # "We were unable to automatically build your code", modify the matrix above - # to set the build mode to "manual" for that language. Then modify this step - # to build your code. - # â„šī¸ Command-line programs to run using the OS shell. - # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun - - name: Run manual build steps - if: matrix.build-mode == 'manual' - shell: bash - run: | - echo 'If you are using a "manual" build mode for one or more of the' \ - 'languages you are analyzing, replace this with the commands to build' \ - 'your code, for example:' - echo ' make bootstrap' - echo ' make release' - exit 1 + # Run build only if a build script exists + if npm run -s | grep -qE '(^|\s)build(\s|$)'; then + echo "Running npm run build" + npm run build + else + echo "No 'build' script found. Skipping build." + fi - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v4 - with: - category: "/language:${{matrix.language}}" + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v4 + with: + category: "/language:${{ matrix.language }}" From 2fdc5cfc111c5741674404becbd141416bf03757 Mon Sep 17 00:00:00 2001 From: JarshiganK Date: Mon, 5 Jan 2026 20:46:42 +0530 Subject: [PATCH 2/4] Delete .github directory --- .github/workflows/codeql.yml | 75 ------------------------------------ 1 file changed, 75 deletions(-) delete mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index dacdc1e..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,75 +0,0 @@ -name: "CodeQL Advanced" - -on: - push: - branches: ["master"] - pull_request: - branches: ["master"] - schedule: - - cron: "37 0 * * 5" - -jobs: - analyze: - name: Analyze (${{ matrix.language }}) - runs-on: ubuntu-latest - - permissions: - security-events: write - packages: read - actions: read - contents: read - - strategy: - fail-fast: false - matrix: - include: - - language: javascript-typescript - build-mode: manual - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: "20" - - - name: Initialize CodeQL - uses: github/codeql-action/init@v4 - with: - languages: ${{ matrix.language }} - build-mode: ${{ matrix.build-mode }} - # Optional: - # queries: security-extended,security-and-quality - - - name: Run manual build steps (npm) - if: matrix.build-mode == 'manual' - shell: bash - run: | - set -euo pipefail - - echo "Node: $(node -v)" - echo "npm: $(npm -v)" - - # Install dependencies - if [ -f package-lock.json ]; then - echo "package-lock.json found -> npm ci" - npm ci - else - echo "No package-lock.json -> npm install" - npm install - fi - - # Run build only if a build script exists - if npm run -s | grep -qE '(^|\s)build(\s|$)'; then - echo "Running npm run build" - npm run build - else - echo "No 'build' script found. Skipping build." - fi - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v4 - with: - category: "/language:${{ matrix.language }}" From fc62f818fe3d0ed9e61e88d460f44f9f32727520 Mon Sep 17 00:00:00 2001 From: JarshiganK Date: Mon, 5 Jan 2026 20:51:22 +0530 Subject: [PATCH 3/4] Revert "Delete .github directory" This reverts commit 2fdc5cfc111c5741674404becbd141416bf03757. --- .github/workflows/codeql.yml | 75 ++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 .github/workflows/codeql.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..dacdc1e --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,75 @@ +name: "CodeQL Advanced" + +on: + push: + branches: ["master"] + pull_request: + branches: ["master"] + schedule: + - cron: "37 0 * * 5" + +jobs: + analyze: + name: Analyze (${{ matrix.language }}) + runs-on: ubuntu-latest + + permissions: + security-events: write + packages: read + actions: read + contents: read + + strategy: + fail-fast: false + matrix: + include: + - language: javascript-typescript + build-mode: manual + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: "20" + + - name: Initialize CodeQL + uses: github/codeql-action/init@v4 + with: + languages: ${{ matrix.language }} + build-mode: ${{ matrix.build-mode }} + # Optional: + # queries: security-extended,security-and-quality + + - name: Run manual build steps (npm) + if: matrix.build-mode == 'manual' + shell: bash + run: | + set -euo pipefail + + echo "Node: $(node -v)" + echo "npm: $(npm -v)" + + # Install dependencies + if [ -f package-lock.json ]; then + echo "package-lock.json found -> npm ci" + npm ci + else + echo "No package-lock.json -> npm install" + npm install + fi + + # Run build only if a build script exists + if npm run -s | grep -qE '(^|\s)build(\s|$)'; then + echo "Running npm run build" + npm run build + else + echo "No 'build' script found. Skipping build." + fi + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v4 + with: + category: "/language:${{ matrix.language }}" From 00d1fca2063ea0fd71c19f863808cf6e5f5725dd Mon Sep 17 00:00:00 2001 From: JarshiganK Date: Mon, 5 Jan 2026 20:52:32 +0530 Subject: [PATCH 4/4] Revert "Refactor CodeQL workflow for mannual" This reverts commit 63aa3a0fbad511190b4fa68a7223ee0f692973f7. --- .github/workflows/codeql.yml | 122 +++++++++++++++++++++-------------- 1 file changed, 73 insertions(+), 49 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index dacdc1e..af51f90 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,21 +1,41 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# name: "CodeQL Advanced" on: push: - branches: ["master"] + branches: [ "master" ] pull_request: - branches: ["master"] + branches: [ "master" ] schedule: - - cron: "37 0 * * 5" + - cron: '37 0 * * 5' jobs: analyze: name: Analyze (${{ matrix.language }}) - runs-on: ubuntu-latest - + # Runner size impacts CodeQL analysis time. To learn more, please see: + # - https://gh.io/recommended-hardware-resources-for-running-codeql + # - https://gh.io/supported-runners-and-hardware-resources + # - https://gh.io/using-larger-runners (GitHub.com only) + # Consider using larger runners or machines with greater resources for possible analysis time improvements. + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} permissions: + # required for all workflows security-events: write + + # required to fetch internal or private CodeQL packs packages: read + + # only required for workflows in private repositories actions: read contents: read @@ -23,53 +43,57 @@ jobs: fail-fast: false matrix: include: - - language: javascript-typescript - build-mode: manual - + - language: javascript-typescript + build-mode: none + # CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift' + # Use `c-cpp` to analyze code written in C, C++ or both + # Use 'java-kotlin' to analyze code written in Java, Kotlin or both + # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both + # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis, + # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. + # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how + # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: "20" - - - name: Initialize CodeQL - uses: github/codeql-action/init@v4 - with: - languages: ${{ matrix.language }} - build-mode: ${{ matrix.build-mode }} - # Optional: - # queries: security-extended,security-and-quality + - name: Checkout repository + uses: actions/checkout@v4 - - name: Run manual build steps (npm) - if: matrix.build-mode == 'manual' - shell: bash - run: | - set -euo pipefail + # Add any setup steps before running the `github/codeql-action/init` action. + # This includes steps like installing compilers or runtimes (`actions/setup-node` + # or others). This is typically only required for manual builds. + # - name: Setup runtime (example) + # uses: actions/setup-example@v1 - echo "Node: $(node -v)" - echo "npm: $(npm -v)" + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v4 + with: + languages: ${{ matrix.language }} + build-mode: ${{ matrix.build-mode }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. - # Install dependencies - if [ -f package-lock.json ]; then - echo "package-lock.json found -> npm ci" - npm ci - else - echo "No package-lock.json -> npm install" - npm install - fi + # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality - # Run build only if a build script exists - if npm run -s | grep -qE '(^|\s)build(\s|$)'; then - echo "Running npm run build" - npm run build - else - echo "No 'build' script found. Skipping build." - fi + # If the analyze step fails for one of the languages you are analyzing with + # "We were unable to automatically build your code", modify the matrix above + # to set the build mode to "manual" for that language. Then modify this step + # to build your code. + # â„šī¸ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + - name: Run manual build steps + if: matrix.build-mode == 'manual' + shell: bash + run: | + echo 'If you are using a "manual" build mode for one or more of the' \ + 'languages you are analyzing, replace this with the commands to build' \ + 'your code, for example:' + echo ' make bootstrap' + echo ' make release' + exit 1 - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v4 - with: - category: "/language:${{ matrix.language }}" + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v4 + with: + category: "/language:${{matrix.language}}"