You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SARIF file to add Secure Code Warrior contextual training material to. **Default value:** `./findings.sarif`
101
+
The SARIF file(s) to add Secure Code Warrior contextual training material to. This can be a path to a single file (e.g. `./findings.sarif`), a glob path (e.g. `./scans/**/*.sarif`) or a directory (d.g. `./scans`), in which case all `.sarif` files recursively in the specified directory will be processed. **Default value:** `./findings.sarif`
48
102
49
103
### `outputSarifFile`
50
104
51
-
The SARIF file to add Secure Code Warrior contextual training material to. **Default value:** `./findings.processed.sarif`
105
+
The output path of the resulting SARIF file(s) with Secure Code Warrior contextual training material appended. If a glob path or a directory was provided as the `inputSarifFile` input then the resulting SARIF files will be output to the `./processed-sarifs` directory, which can then simply be the path provided in the `sarif_file` input of the `github/codeql-action/upload-sarif` action. **Default value:** `./findings.processed.sarif`
Copy file name to clipboardExpand all lines: action.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
1
name: 'Add Secure Code Warrior contextual training to SARIF'
2
-
description: 'GitHub Action for adding contextual application security training material to SARIF files based on CWE references'
2
+
description: 'Adds contextual application security training material to SARIF files, providing links to secure coding exercises and short explainer videos'
3
3
author: 'SecureCodeWarrior'
4
4
branding:
5
5
icon: 'shield'
6
6
color: 'orange'
7
7
inputs:
8
8
inputSarifFile:
9
-
description: 'Relative location of SARIF file to process'
9
+
description: 'Relative location of SARIF file(s) to process'
10
10
required: true
11
11
default: './findings.sarif'
12
12
outputSarifFile:
13
-
description: 'Relative destination location for processed SARIF file'
13
+
description: 'Relative destination location for processed SARIF file(s)'
0 commit comments