Skip to content

Commit b665d18

Browse files
authored
Add vulnerability scan monitor from snapshot (#350)
build(snyk): add monitor integration
1 parent cfd5e3e commit b665d18

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
* @kleewho @marcin-cebo @wkal-pubnub @jguz-pubnub
2-
.github/* @parfeon @kleewho @marcin-cebo @wkal-pubnub @jguz-pubnub
1+
* @marcin-cebo @jguz-pubnub @kleewho
2+
.github/* @parfeon @marcin-cebo @jguz-pubnub @kleewho
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Vulnerability scan
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- main
7+
8+
jobs:
9+
security:
10+
runs-on:
11+
group: organization/Default
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v4
15+
- name: Run Snyk monitor for vulnerabilities
16+
uses: snyk/actions/gradle@master
17+
env:
18+
SNYK_TOKEN: ${{ secrets.SNYK_SDK_TOKEN }}
19+
with:
20+
command: monitor
21+
args: --org=sdk --all-sub-project

0 commit comments

Comments
 (0)