File tree Expand file tree Collapse file tree 3 files changed +14
-29
lines changed Expand file tree Collapse file tree 3 files changed +14
-29
lines changed Original file line number Diff line number Diff line change 51
51
MultiNuma :
52
52
needs : [Build]
53
53
uses : ./.github/workflows/reusable_multi_numa.yml
54
+ CodeQL :
55
+ needs : [Build]
56
+ permissions :
57
+ contents : read
58
+ security-events : write
59
+ uses : ./.github/workflows/reusable_codeql.yml
60
+ Trivy :
61
+ needs : [Build]
62
+ permissions :
63
+ contents : read
64
+ security-events : write
65
+ uses : ./.github/workflows/reusable_trivy.yml
Original file line number Diff line number Diff line change 1
1
# CodeQL static analysis
2
2
name : CodeQL
3
3
4
- # Due to lower score on Scorecard we're running this separately from
5
- # "PR/push" workflow. For some reason permissions weren't properly set
6
- # or recognized (by Scorecard). If Scorecard changes its behavior we can
7
- # go back to use 'workflow_call' trigger.
8
- on :
9
- push :
10
- branches-ignore :
11
- - ' dependabot/**'
12
- pull_request :
13
-
14
- concurrency :
15
- group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
16
- cancel-in-progress : true
4
+ on : workflow_call
17
5
18
6
permissions :
19
7
contents : read
Original file line number Diff line number Diff line change 1
1
# Runs linter for Docker files
2
2
name : Trivy
3
3
4
- # Due to lower score on Scorecard we're running this separately from
5
- # "PR/push" workflow. For some reason permissions weren't properly set
6
- # or recognized (by Scorecard). If Scorecard changes its behavior we can
7
- # use 'workflow_call' trigger.
8
- on :
9
- push :
10
- branches-ignore :
11
- - ' dependabot/**'
12
- pull_request :
13
- paths :
14
- - ' .github/docker/*Dockerfile'
15
- - ' .github/workflows/trivy.yml'
16
-
17
- concurrency :
18
- group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
19
- cancel-in-progress : true
4
+ on : workflow_call
20
5
21
6
permissions :
22
7
contents : read
You can’t perform that action at this time.
0 commit comments