Skip to content

Commit 0c7d895

Browse files
authored
Add monitor integration (#214)
build(snyk): add monitor integration
1 parent 5ad3f84 commit 0c7d895

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Vulnerability scan
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- main
7+
8+
jobs:
9+
security:
10+
runs-on:
11+
group: macos-gh
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v4
15+
- name: Run Snyk monitor for vulnerabilities
16+
run: snyk monitor --org=sdk --file=Package.swift
17+
env:
18+
SNYK_TOKEN: ${{ secrets.SNYK_SDK_TOKEN }}

0 commit comments

Comments
 (0)