github-security-report 0.7.1__tar.gz → 0.8.0__tar.gz

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.
Files changed (33) hide show
  1. {github_security_report-0.7.1 → github_security_report-0.8.0}/PKG-INFO +4 -4
  2. {github_security_report-0.7.1 → github_security_report-0.8.0}/pyproject.toml +6 -6
  3. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/_version.py +2 -2
  4. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/categories.py +1 -1
  5. {github_security_report-0.7.1 → github_security_report-0.8.0}/.gitignore +0 -0
  6. {github_security_report-0.7.1 → github_security_report-0.8.0}/LICENSE +0 -0
  7. {github_security_report-0.7.1 → github_security_report-0.8.0}/LICENSES/Apache-2.0.txt +0 -0
  8. {github_security_report-0.7.1 → github_security_report-0.8.0}/README.md +0 -0
  9. {github_security_report-0.7.1 → github_security_report-0.8.0}/scripts/README.md +0 -0
  10. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/__init__.py +0 -0
  11. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/classify.py +0 -0
  12. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/cli.py +0 -0
  13. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/client.py +0 -0
  14. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/collect.py +0 -0
  15. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/config.py +0 -0
  16. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/gating.py +0 -0
  17. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/gitctx.py +0 -0
  18. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/models.py +0 -0
  19. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/posture.py +0 -0
  20. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/py.typed +0 -0
  21. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/remediate.py +0 -0
  22. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/render/__init__.py +0 -0
  23. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/render/html.py +0 -0
  24. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/render/markdown.py +0 -0
  25. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/render/slack.py +0 -0
  26. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/render/terminal.py +0 -0
  27. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/report.py +2 -2
  28. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/rulesets.py +0 -0
  29. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/runner.py +0 -0
  30. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/scope.py +0 -0
  31. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/severity.py +0 -0
  32. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/templates/index.html.j2 +0 -0
  33. {github_security_report-0.7.1 → github_security_report-0.8.0}/src/github_security_report/templates/report.html.j2 +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: github-security-report
3
- Version: 0.7.1
3
+ Version: 0.8.0
4
4
  Summary: Security and quality reporting across GitHub organisations
5
5
  Project-URL: Homepage, https://github.com/lfreleng-actions/github-security-report-action
6
6
  Project-URL: Repository, https://github.com/lfreleng-actions/github-security-report-action
@@ -31,13 +31,13 @@ Requires-Dist: pyyaml==6.0.3
31
31
  Requires-Dist: rich==15.0.0
32
32
  Requires-Dist: typer==0.26.8
33
33
  Provides-Extra: dev
34
- Requires-Dist: mypy==2.1.0; extra == 'dev'
34
+ Requires-Dist: mypy==2.3.0; extra == 'dev'
35
35
  Requires-Dist: pytest-asyncio==1.4.0; extra == 'dev'
36
36
  Requires-Dist: pytest-cov==7.1.0; extra == 'dev'
37
37
  Requires-Dist: pytest==9.1.1; extra == 'dev'
38
38
  Requires-Dist: respx==0.23.1; extra == 'dev'
39
- Requires-Dist: ruff==0.15.20; extra == 'dev'
40
- Requires-Dist: syrupy==5.5.1; extra == 'dev'
39
+ Requires-Dist: ruff==0.15.21; extra == 'dev'
40
+ Requires-Dist: syrupy==5.5.3; extra == 'dev'
41
41
  Requires-Dist: types-jsonschema==4.26.0.20260518; extra == 'dev'
42
42
  Requires-Dist: types-pyyaml==6.0.12.20250915; extra == 'dev'
43
43
  Description-Content-Type: text/markdown
@@ -63,9 +63,9 @@ dev = [
63
63
  "pytest-asyncio==1.4.0",
64
64
  "pytest-cov==7.1.0",
65
65
  "respx==0.23.1",
66
- "syrupy==5.5.1",
67
- "mypy==2.1.0",
68
- "ruff==0.15.20",
66
+ "syrupy==5.5.3",
67
+ "mypy==2.3.0",
68
+ "ruff==0.15.21",
69
69
  "types-jsonschema==4.26.0.20260518",
70
70
  "types-PyYAML==6.0.12.20250915",
71
71
  ]
@@ -95,9 +95,9 @@ dev = [
95
95
  "pytest-asyncio==1.4.0",
96
96
  "pytest-cov==7.1.0",
97
97
  "respx==0.23.1",
98
- "syrupy==5.5.1",
99
- "mypy==2.1.0",
100
- "ruff==0.15.20",
98
+ "syrupy==5.5.3",
99
+ "mypy==2.3.0",
100
+ "ruff==0.15.21",
101
101
  "types-jsonschema==4.26.0.20260518",
102
102
  "types-PyYAML==6.0.12.20250915",
103
103
  ]
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
18
18
  commit_id: str | None
19
19
  __commit_id__: str | None
20
20
 
21
- __version__ = version = '0.7.1'
22
- __version_tuple__ = version_tuple = (0, 7, 1)
21
+ __version__ = version = '0.8.0'
22
+ __version_tuple__ = version_tuple = (0, 8, 0)
23
23
 
24
24
  __commit_id__ = commit_id = None
@@ -141,7 +141,7 @@ _CATEGORIES: dict[CategoryKey, CategoryMeta] = {
141
141
  ),
142
142
  CategoryKey.SECRET_SCANNING: CategoryMeta(
143
143
  key=CategoryKey.SECRET_SCANNING,
144
- title="Secret scanning",
144
+ title="Secret Scanning",
145
145
  pass_label="Clean",
146
146
  fail_label=None,
147
147
  url=(
@@ -27,11 +27,11 @@ from github_security_report.models import (
27
27
  )
28
28
 
29
29
  SIGNAL_ORDER: tuple[SignalType, ...] = (
30
- SignalType.CODEQL,
31
30
  SignalType.SCORECARD,
32
- SignalType.ZIZMOR,
33
31
  SignalType.AISLOP,
34
32
  SignalType.DEPENDABOT,
33
+ SignalType.CODEQL,
34
+ SignalType.ZIZMOR,
35
35
  SignalType.SECRET_SCANNING,
36
36
  )
37
37