Skip to content

ci: add blackduck oss scan #6171

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/open-source-security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Open Source Security

on:
push:
branches:
- main
schedule:
- cron: "12 3 * * *"
workflow_dispatch:

jobs:
piper-oss:
name: 'Security'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: detectExecuteScan
uses: SAP/[email protected]
with:
step-name: detectExecuteScan
flags: '--token ${{ secrets.DETECT_TOKEN }}'


16 changes: 16 additions & 0 deletions .pipeline/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
general:
owner: SAP
repository: ui5-webcomponents-react
buildTool: yarn
steps:
detectExecuteScan:
serverUrl: 'https://sap.blackducksoftware.com'
projectName: 'ui5-webcomponents-react'
groups:
- 'ui5-webcomponents-react'
npmDependencyTypesExcluded: ['DEV']
useDetect9: true
excludedPackageManagers:
- 'LERNA'
customEnvironmentVariables:
- 'DETECT_YARN_DEPENDENCY_TYPES_EXCLUDED=NON_PRODUCTION'
Loading