|
1 | | -# SPDX-License-Identifier: PMPL-1.0-or-later |
2 | | -# For most projects, this workflow file will not need changing; you simply need |
3 | | -# to commit it to your repository. |
4 | | -# |
5 | | -# You may wish to alter this file to override the set of languages analyzed, |
6 | | -# or to provide custom queries or build logic. |
7 | | -# |
8 | | -# ******** NOTE ******** |
9 | | -# We have attempted to detect the languages in your repository. Please check |
10 | | -# the `language` matrix defined below to confirm you have the correct set of |
11 | | -# supported CodeQL languages. |
12 | | -# |
13 | | -name: "CodeQL Advanced" |
| 1 | +# SPDX-License-Identifier: PMPL-1.0 |
| 2 | +name: CodeQL Security Analysis |
| 3 | + |
14 | 4 | on: |
15 | 5 | push: |
16 | | - branches: ["main"] |
| 6 | + branches: [main, master] |
17 | 7 | pull_request: |
18 | | - branches: ["main"] |
| 8 | + branches: [main, master] |
19 | 9 | schedule: |
20 | | - - cron: '16 7 * * 1' |
| 10 | + - cron: '0 6 * * 1' |
| 11 | + |
| 12 | +# Estate guardrail: cancel superseded runs so re-pushes / rebased PR |
| 13 | +# updates do not pile up queued runs against the shared account-wide |
| 14 | +# Actions concurrency pool. Applied only to read-only check workflows |
| 15 | +# (no publish/mutation), so cancelling a superseded run is always safe. |
| 16 | +concurrency: |
| 17 | + group: ${{ github.workflow }}-${{ github.ref }} |
| 18 | + cancel-in-progress: true |
| 19 | + |
| 20 | +permissions: |
| 21 | + contents: read |
| 22 | + |
21 | 23 | jobs: |
22 | 24 | analyze: |
23 | | - name: Analyze (${{ matrix.language }}) |
24 | | - # Runner size impacts CodeQL analysis time. To learn more, please see: |
25 | | - # - https://gh.io/recommended-hardware-resources-for-running-codeql |
26 | | - # - https://gh.io/supported-runners-and-hardware-resources |
27 | | - # - https://gh.io/using-larger-runners (GitHub.com only) |
28 | | - # Consider using larger runners or machines with greater resources for possible analysis time improvements. |
29 | | - runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} |
| 25 | + runs-on: ubuntu-latest |
30 | 26 | permissions: |
31 | | - # required for all workflows |
32 | | - security-events: write |
33 | | - # required to fetch internal or private CodeQL packs |
34 | | - packages: read |
35 | | - # only required for workflows in private repositories |
36 | | - actions: read |
37 | 27 | contents: read |
| 28 | + security-events: write |
38 | 29 | strategy: |
39 | 30 | fail-fast: false |
40 | 31 | matrix: |
41 | 32 | include: |
42 | | - - language: actions |
| 33 | + - language: javascript-typescript |
43 | 34 | build-mode: none |
44 | | - # CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift' |
45 | | - # Use `c-cpp` to analyze code written in C, C++ or both |
46 | | - # Use 'java-kotlin' to analyze code written in Java, Kotlin or both |
47 | | - # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both |
48 | | - # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis, |
49 | | - # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. |
50 | | - # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how |
51 | | - # 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 |
| 35 | + |
52 | 36 | steps: |
53 | | - - name: Checkout repository |
54 | | - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 |
55 | | - # Add any setup steps before running the `github/codeql-action/init` action. |
56 | | - # This includes steps like installing compilers or runtimes (`actions/setup-node` |
57 | | - # or others). This is typically only required for manual builds. |
58 | | - # - name: Setup runtime (example) |
59 | | - # uses: actions/setup-example@v1 |
| 37 | + - name: Checkout |
| 38 | + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
60 | 39 |
|
61 | | - # Initializes the CodeQL tools for scanning. |
62 | 40 | - name: Initialize CodeQL |
63 | | - uses: github/codeql-action/init@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4 |
| 41 | + uses: github/codeql-action/init@c6f931105cb2c34c8f901cc885ba1e2e259cf745 # v3 |
64 | 42 | with: |
65 | 43 | languages: ${{ matrix.language }} |
66 | 44 | build-mode: ${{ matrix.build-mode }} |
67 | | - # If you wish to specify custom queries, you can do so here or in a config file. |
68 | | - # By default, queries listed here will override any specified in a config file. |
69 | | - # Prefix the list here with "+" to use these queries and those in the config file. |
70 | | - # If the analyze step fails for one of the languages you are analyzing with |
71 | | - # "We were unable to automatically build your code", modify the matrix above |
72 | | - # to set the build mode to "manual" for that language. Then modify this step |
73 | | - # to build your code. |
74 | | - # ℹ️ Command-line programs to run using the OS shell. |
75 | | - # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun |
76 | | - - name: Run manual build steps |
77 | | - # 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 |
78 | | - # queries: security-extended,security-and-quality |
79 | 45 |
|
80 | | - if: matrix.build-mode == 'manual' |
81 | | - shell: bash |
82 | | - run: | |
83 | | - echo 'If you are using a "manual" build mode for one or more of the' \ |
84 | | - 'languages you are analyzing, replace this with the commands to build' \ |
85 | | - 'your code, for example:' |
86 | | - echo ' make bootstrap' |
87 | | - echo ' make release' |
88 | | - exit 1 |
89 | 46 | - name: Perform CodeQL Analysis |
90 | | - uses: github/codeql-action/analyze@89a39a4e59826350b863aa6b6252a07ad50cf83e # v4 |
| 47 | + uses: github/codeql-action/analyze@c6f931105cb2c34c8f901cc885ba1e2e259cf745 # v3 |
91 | 48 | with: |
92 | | - category: "/language:${{matrix.language}}" |
93 | | -# Estate guardrail: cancel superseded runs so re-pushes / rebased PR |
94 | | -# updates do not pile up queued runs against the shared account-wide |
95 | | -# Actions concurrency pool. Applied only to read-only check workflows |
96 | | -# (no publish/mutation), so cancelling a superseded run is always safe. |
97 | | -concurrency: |
98 | | - group: ${{ github.workflow }}-${{ github.ref }} |
99 | | - cancel-in-progress: true |
100 | | - |
101 | | -permissions: |
102 | | - contents: read |
| 49 | + category: "/language:${{ matrix.language }}" |
0 commit comments