Skip to content

Commit 57fb5f1

Browse files
[CLDSRV-388] ✨ Implement GHAS
1 parent a4e8cbe commit 57fb5f1

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.github/workflows/codeql.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: codeQL
3+
4+
on:
5+
push:
6+
branches: [development/*, stabilization/*, hotfix/*]
7+
pull_request:
8+
branches: [development/*, stabilization/*, hotfix/*]
9+
workflow_dispatch:
10+
11+
jobs:
12+
analyze:
13+
name: Static analysis with CodeQL
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v3
18+
19+
- name: Initialize CodeQL
20+
uses: github/codeql-action/init@v2
21+
with:
22+
languages: javascript, python, ruby
23+
24+
- name: Build and analyze
25+
uses: github/codeql-action/analyze@v2
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: dependency review
3+
4+
on:
5+
pull_request:
6+
branches: [development/*, stabilization/*, hotfix/*]
7+
8+
jobs:
9+
dependency-review:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: 'Checkout Repository'
13+
uses: actions/checkout@v3
14+
15+
- name: 'Dependency Review'
16+
uses: actions/dependency-review-action@v3

0 commit comments

Comments
 (0)