File tree Expand file tree Collapse file tree 1 file changed +11
-24
lines changed Expand file tree Collapse file tree 1 file changed +11
-24
lines changed Original file line number Diff line number Diff line change 1
- name : generate_sbom
2
- run-name : ${{ github.event.pull_request.head.sha }}
3
- on :
4
- workflow_dispatch :
5
- pull_request :
6
- types :
7
- - opened
8
- - synchronize
9
- - closed
10
-
11
- env :
12
- SBOM_FILENAME : ${{ github.event.repository.name }}-${{ github.event.pull_request.head.sha }}.json
1
+ name : Output markdown
2
+ on : pull_request
13
3
14
4
jobs :
15
- generate_sbom :
16
- name : Generate sBOM
5
+ output_markdown :
6
+ name : Output markdown
17
7
runs-on : ubuntu-latest
18
8
steps :
19
- - name : Setup cdxgen
20
- shell : bash
21
- run : npm install -g @cyclonedx/cdxgen@8.2.4
22
-
23
- - name : make file
9
+ - name : create markdown
24
10
shell : bash
25
- run : echo {msg:"Hello World"}>>hello.json
11
+ run : |
12
+ echo "* :rotating_light: - Major version upgrade" >> output.md
26
13
27
- - uses : actions/upload-artifact@v3
14
+ - uses : actions/upload-artifact@v4
28
15
with :
29
- name : cyclonedx-sbom
30
- path : hello.json
16
+ name : output.md
17
+ path : output.md
31
18
32
-
19
+
You can’t perform that action at this time.
0 commit comments