Skip to content

Commit f4a6fa2

Browse files
committed
Add Seqra action
1 parent 644cb1e commit f4a6fa2

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/seqra.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Seqra Scan
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- 'demo/**'
8+
pull_request:
9+
branches:
10+
- dev
11+
- 'demo/**'
12+
13+
jobs:
14+
seqra:
15+
runs-on: ubuntu-latest
16+
permissions:
17+
contents: read
18+
security-events: write
19+
20+
steps:
21+
- uses: actions/checkout@v4
22+
23+
- uses: actions/setup-java@v4
24+
with:
25+
distribution: 'temurin'
26+
java-version: '21'
27+
28+
- uses: seqra/seqra-action@v2
29+
with:
30+
upload-sarif: 'true'

0 commit comments

Comments
 (0)