Skip to content

Commit 623bd02

Browse files
authored
Use re-usable sca_scan workflows for snyk (#194)
2 parents f603355 + 75c36d6 commit 623bd02

2 files changed

Lines changed: 26 additions & 60 deletions

File tree

.github/workflows/sca_scan.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: SCA
2+
3+
on:
4+
merge_group:
5+
pull_request:
6+
types:
7+
- opened
8+
- synchronize
9+
push:
10+
branches:
11+
- main
12+
13+
permissions:
14+
contents: read
15+
16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
18+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
19+
20+
jobs:
21+
snyk-cli:
22+
uses: auth0/devsecops-tooling/.github/workflows/sca-scan.yml@main
23+
with:
24+
additional-arguments: "--exclude=README.md"
25+
dotnet-version: "6"
26+
secrets: inherit

.github/workflows/snyk.yml

Lines changed: 0 additions & 60 deletions
This file was deleted.

0 commit comments

Comments
 (0)