codeql-analysis.yml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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: Check out pull request code
  36. uses: actions/checkout@v4
  37. if: github.event_name == 'pull_request'
  38. with:
  39. repository: ${{ github.event.pull_request.head.repo.full_name }}
  40. - name: Check out repository code
  41. uses: actions/checkout@v4
  42. if: github.event_name == 'push'
  43. - uses: actions/setup-go@v5
  44. with:
  45. go-version: '1.22'
  46. cache: true
  47. # Initializes the CodeQL tools for scanning.
  48. - name: Initialize CodeQL
  49. uses: github/codeql-action/init@v3
  50. with:
  51. languages: ${{ matrix.language }}
  52. config-file: ./.github/codeql/${{ matrix.language }}.yml
  53. # If you wish to specify custom queries, you can do so here or in a config file.
  54. # By default, queries listed here will override any specified in a config file.
  55. # Prefix the list here with "+" to use these queries and those in the config file.
  56. # queries: ./path/to/local/query, your-org/your-repo/queries@main
  57. # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
  58. # If this step fails, then you should remove it and run the build manually (see below)
  59. - name: Autobuild
  60. uses: github/codeql-action/autobuild@v3
  61. # ℹ️ Command-line programs to run using the OS shell.
  62. # 📚 https://git.io/JvXDl
  63. # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
  64. # and modify them (or add more) to build your code if your project
  65. # uses a compiled language
  66. #- run: |
  67. # make bootstrap
  68. # make release
  69. - name: Perform CodeQL Analysis
  70. uses: github/codeql-action/analyze@v3