|
8 | 8 |
|
9 | 9 | jobs:
|
10 | 10 | CodeQL-Build:
|
11 |
| - |
12 |
| - # CodeQL runs on ubuntu-latest and windows-latest |
| 11 | + # CodeQL runs on ubuntu-latest, windows-latest, and macos-latest |
13 | 12 | runs-on: ubuntu-latest
|
14 | 13 |
|
| 14 | + permissions: |
| 15 | + # required for all workflows |
| 16 | + security-events: write |
| 17 | + |
15 | 18 | steps:
|
16 | 19 | - name: Checkout repository
|
17 | 20 | uses: actions/checkout@v3
|
18 |
| - with: |
19 |
| - # We must fetch at least the immediate parents so that if this is |
20 |
| - # a pull request then we can checkout the head. |
21 |
| - fetch-depth: 2 |
22 |
| - |
23 |
| - # If this run was triggered by a pull request event, then checkout |
24 |
| - # the head of the pull request instead of the merge commit. |
25 |
| - - run: git checkout HEAD^2 |
26 |
| - if: ${{ github.event_name == 'pull_request' }} |
27 | 21 |
|
28 | 22 | # Initializes the CodeQL tools for scanning.
|
29 | 23 | - name: Initialize CodeQL
|
30 |
| - uses: github/codeql-action/init@v1 |
| 24 | + uses: github/codeql-action/init@v2 |
31 | 25 | # Override language selection by uncommenting this and choosing your languages
|
32 | 26 | # with:
|
33 |
| - # languages: go, javascript, csharp, python, cpp, java |
| 27 | + # languages: go, javascript, csharp, python, cpp, java, ruby |
34 | 28 |
|
35 |
| - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). |
36 |
| - # If this step fails, then you should remove it and run the build manually (see below) |
| 29 | + # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java). |
| 30 | + # If this step fails, then you should remove it and run the build manually (see below). |
37 | 31 | - name: Autobuild
|
38 |
| - uses: github/codeql-action/autobuild@v1 |
| 32 | + uses: github/codeql-action/autobuild@v2 |
39 | 33 |
|
40 | 34 | # ℹ️ Command-line programs to run using the OS shell.
|
41 |
| - # 📚 https://git.io/JvXDl |
| 35 | + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun |
42 | 36 |
|
43 |
| - # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines |
44 |
| - # and modify them (or add more) to build your code if your project |
45 |
| - # uses a compiled language |
| 37 | + # ✏️ If the Autobuild fails above, remove it and uncomment the following |
| 38 | + # three lines and modify them (or add more) to build your code if your |
| 39 | + # project uses a compiled language |
46 | 40 |
|
47 | 41 | #- run: |
|
48 |
| - # make bootstrap |
49 |
| - # make release |
| 42 | + # make bootstrap |
| 43 | + # make release |
50 | 44 |
|
51 | 45 | - name: Perform CodeQL Analysis
|
52 |
| - uses: github/codeql-action/analyze@v1 |
| 46 | + uses: github/codeql-action/analyze@v2 |
0 commit comments