chore(deps-dev): bump @sap/cds-dk from 9.9.1 to 9.9.2 #46
Workflow file for this run
This file contains hidden or 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
| name: CI - PR | |
| permissions: | |
| actions: read | |
| contents: read | |
| packages: read | |
| security-events: write | |
| env: | |
| MAVEN_VERSION: "3.9.15" | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main] | |
| types: [reopened, synchronize, opened] | |
| jobs: | |
| blackduck: | |
| name: Blackduck Scan | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Scan With Black Duck | |
| uses: cap-java/.github/actions/scan-with-blackduck@296573b55e906f5c77a1855bcfe4285cbbc5cac4 #main | |
| with: | |
| blackduck_token: ${{ secrets.BLACK_DUCK_TOKEN }} | |
| maven-version: ${{ env.MAVEN_VERSION }} | |
| project-name: com.sap.cds.feature.notifications | |
| included-modules: cds-feature-notifications | |
| scan_mode: FULL | |
| #rapid_compare_mode: BOM_COMPARE # PRs might only be blocked by things they introduce, not by pre-existing issues that could have appeared in the main branch in the meantime |