-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from niscy-eudiw/feat/secworkflows
added sec workflows
- Loading branch information
Showing
4 changed files
with
2,277 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: SCA - Dependency Check Caller | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
SCA_caller: | ||
uses: eu-digital-identity-wallet/eudi-infra-ci/.github/workflows/sca_bt.yml@main | ||
secrets: | ||
NVD_API_KEY: ${{ secrets.NVD_API_KEY }} | ||
DOJO_TOKEN: ${{ secrets.DOJO_TOKEN }} | ||
DOJO_URL: ${{ secrets.DOJO_URL }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Secret Scanning - Gitleaks Caller | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
Secret_Scanning_caller: | ||
uses: eu-digital-identity-wallet/eudi-infra-ci/.github/workflows/secretscanning.yml@main | ||
secrets: | ||
DOJO_TOKEN: ${{ secrets.DOJO_TOKEN }} | ||
DOJO_URL: ${{ secrets.DOJO_URL }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: SAST - SonarCloud (BT) Caller | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'dependabot/**' | ||
pull_request_target: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
SAST_caller: | ||
uses: eu-digital-identity-wallet/eudi-infra-ci/.github/workflows/sast_bt_no_cov.yml@main | ||
secrets: | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DOJO_TOKEN: ${{ secrets.DOJO_TOKEN }} | ||
DOJO_URL: ${{ secrets.DOJO_URL }} |
Oops, something went wrong.