codeql-analysis.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # For most projects, this workflow file will not need changing; you simply need
  2. # to commit it to your repository.
  3. #
  4. # You may wish to alter this file to override the set of languages analyzed,
  5. # or to provide custom queries or build logic.
  6. #
  7. # ******** NOTE ********
  8. # We have attempted to detect the languages in your repository. Please check
  9. # the `language` matrix defined below to confirm you have the correct set of
  10. # supported CodeQL languages.
  11. #
  12. name: "CodeQL"
  13. on:
  14. push:
  15. branches: [ develop ]
  16. paths-ignore:
  17. - 'static/**'
  18. pull_request:
  19. # The branches below must be a subset of the branches above
  20. branches: [ develop ]
  21. paths-ignore:
  22. - 'static/**'
  23. jobs:
  24. analyze:
  25. name: Analyze
  26. runs-on: ubuntu-latest
  27. strategy:
  28. fail-fast: false
  29. matrix:
  30. language: [ 'go', 'javascript' ]
  31. # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
  32. # Learn more:
  33. # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
  34. steps:
  35. - name: Checkout repository
  36. uses: actions/checkout@v4
  37. # Initializes the CodeQL tools for scanning.
  38. - name: Initialize CodeQL
  39. uses: github/codeql-action/init@v2
  40. with:
  41. languages: ${{ matrix.language }}
  42. config-file: ./.github/codeql/${{ matrix.language }}.yml
  43. # If you wish to specify custom queries, you can do so here or in a config file.
  44. # By default, queries listed here will override any specified in a config file.
  45. # Prefix the list here with "+" to use these queries and those in the config file.
  46. # queries: ./path/to/local/query, your-org/your-repo/queries@main
  47. # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
  48. # If this step fails, then you should remove it and run the build manually (see below)
  49. - name: Autobuild
  50. uses: github/codeql-action/autobuild@v2
  51. # ℹ️ Command-line programs to run using the OS shell.
  52. # 📚 https://git.io/JvXDl
  53. # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
  54. # and modify them (or add more) to build your code if your project
  55. # uses a compiled language
  56. #- run: |
  57. # make bootstrap
  58. # make release
  59. - name: Perform CodeQL Analysis
  60. uses: github/codeql-action/analyze@v2