@solana-epic/github-action 0.1.0-beta.2 → 0.2.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/action.yml +9 -1
- package/dist/index.js +868 -516
- package/dist/index.js.map +1 -1
- package/package.json +2 -3
- package/dist/report.d.ts +0 -4
- package/dist/report.d.ts.map +0 -1
- package/dist/report.js +0 -133
- package/dist/report.js.map +0 -1
package/action.yml
CHANGED
|
@@ -15,9 +15,17 @@ inputs:
|
|
|
15
15
|
description: 'Minimum severity level to trigger a non-zero exit code (Safe, Minor, Major, Critical)'
|
|
16
16
|
required: false
|
|
17
17
|
default: 'Critical'
|
|
18
|
+
config_path:
|
|
19
|
+
description: 'Path to epic.toml configuration file'
|
|
20
|
+
required: false
|
|
21
|
+
|
|
22
|
+
sarif_output:
|
|
23
|
+
description: 'Path where the SARIF report will be written'
|
|
24
|
+
required: false
|
|
25
|
+
default: 'epic-report.sarif'
|
|
18
26
|
outputs:
|
|
19
27
|
severity:
|
|
20
|
-
description: 'Overall upgrade severity (
|
|
28
|
+
description: 'Overall upgrade severity (Compatible, Migration-Required, Blocked)'
|
|
21
29
|
findings_count:
|
|
22
30
|
description: 'Number of detected upgrade findings'
|
|
23
31
|
runs:
|