File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -34,13 +34,25 @@ on: # yamllint disable-line rule:truthy
34
34
35
35
jobs :
36
36
analyze :
37
- name : Analyze
37
+ name : Analyze (${{ matrix.language }})
38
+ # Runner size impacts CodeQL analysis time. To learn more, please see:
39
+ # - https://gh.io/recommended-hardware-resources-for-running-codeql
40
+ # - https://gh.io/supported-runners-and-hardware-resources
41
+ # - https://gh.io/using-larger-runners (GitHub.com only)
42
+ # Consider using larger runners or machines with greater resources
43
+ # for possible analysis time improvements.
38
44
runs-on :
39
45
${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-24.04' }}
40
46
permissions :
47
+ # required for all workflows
48
+ security-events : write
49
+
50
+ # required to fetch internal or private CodeQL packs
51
+ packages : read
52
+
53
+ # only required for workflows in private repositories
41
54
actions : read
42
55
contents : read
43
- security-events : write
44
56
45
57
strategy :
46
58
fail-fast : false
You can’t perform that action at this time.
0 commit comments