|
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 | 1 | name: "CodeQL" |
7 | | - |
8 | 2 | on: |
9 | 3 | push: |
10 | | - branches: [ main ] |
| 4 | + branches: [main] |
11 | 5 | pull_request: |
12 | | - # The branches below must be a subset of the branches above |
13 | | - branches: [ main ] |
| 6 | + branches: [main] |
14 | 7 | schedule: |
15 | 8 | - cron: '0 17 * * 2' |
16 | | - |
17 | 9 | jobs: |
18 | 10 | analyze: |
19 | 11 | name: Analyze |
20 | 12 | runs-on: ubuntu-latest |
21 | | - |
| 13 | + permissions: |
| 14 | + security-events: write |
22 | 15 | strategy: |
23 | 16 | fail-fast: false |
24 | 17 | matrix: |
25 | | - # Override automatic language detection by changing the below list |
26 | | - # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] |
27 | | - language: [ 'go' ] |
28 | | - # Learn more... |
29 | | - # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection |
30 | | - |
| 18 | + language: ['go'] |
31 | 19 | steps: |
32 | 20 | - name: Checkout repository |
33 | | - uses: actions/checkout@v2 |
34 | | - |
35 | | - # Initializes the CodeQL tools for scanning. |
| 21 | + uses: actions/checkout@v4 |
| 22 | + - name: Set up Go |
| 23 | + uses: actions/setup-go@v5 |
| 24 | + with: |
| 25 | + go-version: '1.25' |
| 26 | + - name: Run go generate |
| 27 | + run: go generate ./... |
36 | 28 | - name: Initialize CodeQL |
37 | | - uses: github/codeql-action/init@v1 |
| 29 | + uses: github/codeql-action/init@v3 |
38 | 30 | with: |
39 | 31 | languages: ${{ matrix.language }} |
40 | | - # If you wish to specify custom queries, you can do so here or in a config file. |
41 | | - # By default, queries listed here will override any specified in a config file. |
42 | | - # Prefix the list here with "+" to use these queries and those in the config file. |
43 | | - # queries: ./path/to/local/query, your-org/your-repo/queries@main |
44 | | - |
45 | | - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). |
46 | | - # If this step fails, then you should remove it and run the build manually (see below) |
47 | 32 | - name: Autobuild |
48 | | - uses: github/codeql-action/autobuild@v1 |
49 | | - |
50 | | - # ℹ️ Command-line programs to run using the OS shell. |
51 | | - # 📚 https://git.io/JvXDl |
52 | | - |
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 | | - |
57 | | - #- run: | |
58 | | - # make bootstrap |
59 | | - # make release |
60 | | - |
| 33 | + uses: github/codeql-action/autobuild@v3 |
61 | 34 | - name: Perform CodeQL Analysis |
62 | | - uses: github/codeql-action/analyze@v1 |
| 35 | + uses: github/codeql-action/analyze@v3 |
0 commit comments