-
Notifications
You must be signed in to change notification settings - Fork 67
76 lines (65 loc) · 2.35 KB
/
build+publish-all-pds-solutions.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# SPDX-License-Identifier: MIT
name: Build and publish all SecHub PDS solutions
on:
workflow_dispatch:
inputs:
pds-version:
description: pds-base version to use (e.g. 1.0.0)
required: true
workflow_call:
inputs:
pds-version:
required: true
type: string
jobs:
call_build_pds-checkmarx:
uses: mercedes-benz/sechub/.github/workflows/_build+publish-pds-solution.yml@develop
with:
pds-solution: checkmarx
pds-version: ${{ inputs.pds-version }}
call_build_pds-loc:
uses: mercedes-benz/sechub/.github/workflows/_build+publish-pds-solution.yml@develop
with:
pds-solution: loc
pds-version: ${{ inputs.pds-version }}
# 2023-06-12: findsecuritybugs deactivated due to upstream fix is not yet released
# call_build_pds-findsecuritybugs:
# uses: mercedes-benz/sechub/.github/workflows/_build+publish-pds-solution.yml@develop
# with:
# pds-solution: findsecuritybugs
# pds-version: ${{ inputs.pds-version }}
call_build_pds-gitleaks:
uses: mercedes-benz/sechub/.github/workflows/_build+publish-pds-solution.yml@develop
with:
pds-solution: gitleaks
pds-version: ${{ inputs.pds-version }}
call_build_pds-gosec:
uses: mercedes-benz/sechub/.github/workflows/_build+publish-pds-solution.yml@develop
with:
pds-solution: gosec
pds-version: ${{ inputs.pds-version }}
call_build_pds-multi:
uses: mercedes-benz/sechub/.github/workflows/_build+publish-pds-solution.yml@develop
with:
pds-solution: multi
pds-version: ${{ inputs.pds-version }}
call_build_pds-owaspzap:
uses: mercedes-benz/sechub/.github/workflows/_build+publish-pds-solution.yml@develop
with:
pds-solution: owaspzap
pds-version: ${{ inputs.pds-version }}
call_build-and-publish-pmd:
uses: mercedes-benz/sechub/.github/workflows/_build+publish-pds-solution.yml@develop
with:
pds-solution: pmd
pds-version: ${{ inputs.pds-version }}
call_build_pds-scancode:
uses: mercedes-benz/sechub/.github/workflows/_build+publish-pds-solution.yml@develop
with:
pds-solution: scancode
pds-version: ${{ inputs.pds-version }}
call_build_pds-tern:
uses: mercedes-benz/sechub/.github/workflows/_build+publish-pds-solution.yml@develop
with:
pds-solution: tern
pds-version: ${{ inputs.pds-version }}