dependabot[bot]
1b706e539f
ci(deps): bump actions/setup-python from 4 to 7 ( #758 )
...
Bumps [actions/setup-python](https://github.com/actions/setup-python ) from 4 to 7.
- [Release notes](https://github.com/actions/setup-python/releases )
- [Commits](https://github.com/actions/setup-python/compare/v4...v7 )
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-07-22 14:11:25 +05:30
dependabot[bot]
637dff45dc
ci(deps): bump actions/checkout from 4 to 7 ( #677 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 4 to 7.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v4...v7 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-24 22:01:27 +05:30
KaifAhmad1
f4a79ae851
ci: disable automatic benchmark runs on push — manual only via workflow_dispatch
2026-05-23 00:04:52 +05:30
KaifAhmad1 and Claude Sonnet 4.6
1d88c06cbb
fix(security): resolve CodeQL alerts for logging, URL sanitization, and workflow permissions
...
- Remove api_key debug print blocks from relation_extractor.py and triplet_extractor.py (CWE-532 clear-text logging)
- Replace URL substring check with exact equality in test_web_ingestor.py (CWE-20 incomplete sanitization)
- Add `permissions: contents: read` to benchmark.yml and security.yml workflows (least-privilege)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-30 19:46:30 +05:30
KaifAhmad1 and Claude Sonnet 4.6
2e5ad9d28b
fix: address Qodo review issues in CI workflows
...
- Replace '*.md' with '**/*.md' in paths-ignore across ci.yml,
benchmark.yml, and security-scan.yml — '*.md' only matches root-level
markdown; '**/*.md' covers all subdirectories (cookbook/, docs/, etc.)
- Add cache: 'pip' to setup-python in ci.yml to avoid re-downloading
heavy packages (torch, spacy, faiss) on every run
- Update security-scan PR comment text to accurately reflect that it
skips doc/markdown-only PRs, not "every PR"
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-18 00:38:44 +05:30
KaifAhmad1 and Claude Sonnet 4.6
1aee4dfd29
ci: scope workflows to avoid redundant docs deploys and benchmark runs
...
- docs.yml: remove semantica/** path trigger (was deploying docs on every
source code push); add release:[published] so docs still deploy on releases
- benchmark.yml: remove pull_request trigger (heavy deps - torch/spacy/faiss);
add paths-ignore for doc-only main pushes; add workflow_dispatch for manual runs
- ci.yml: add paths-ignore so doc-only changes skip build; add pytest step
so tests actually run in CI (was build-only before)
- security-scan.yml: add paths-ignore on push/pull_request; schedule runs unaffected
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-03-17 23:15:18 +05:30
dependabot[bot]
76b7e0a15b
ci(deps): bump actions/upload-artifact from 6 to 7
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 6 to 7.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v6...v7 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-03-02 09:35:43 +00:00
dependabot[bot]
f73de529bf
ci(deps): bump actions/upload-artifact from 4 to 6
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 4 to 6.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v6 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
2026-02-09 12:01:09 +00:00
e182f10d22
fix: add comprehensive parsing dependencies to prevent future CI failures
...
- Add openpyxl, lxml, python-docx, beautifulsoup4, chardet, langdetect
- Cover all common parsing libraries used in semantica
- Prevent back-and-forth dependency fixes
- Ensure all 138 benchmarks run without import errors
Co-authored-by: ZohaibHassan16 <zohaibhassan16@users.noreply.github.com >
Co-authored-by: KaifAhmad1 <kaifahmad087@users.noreply.github.com >
2026-02-07 17:50:41 +05:30
1d055095ee
fix: add python-pptx dependency to CI to resolve PPTX parsing import errors
...
- Add python-pptx to benchmark.yml dependencies
- Fix ModuleNotFoundError: No module named 'pptx'
- Continue fixing missing dependencies one by one
- Working towards complete CI compatibility
Co-authored-by: ZohaibHassan16 <zohaibhassan16@users.noreply.github.com >
Co-authored-by: KaifAhmad1 <kaifahmad087@users.noreply.github.com >
2026-02-07 17:50:13 +05:30
17428fdb08
fix: add pdfplumber dependency to CI to resolve PDF parsing import errors
...
- Add pdfplumber to benchmark.yml dependencies
- Fix ModuleNotFoundError: No module named 'pdfplumber'
- Ensure all parsing benchmarks run successfully in CI
- Complete dependency coverage for all benchmark modules
Co-authored-by: ZohaibHassan16 <zohaibhassan16@users.noreply.github.com >
Co-authored-by: KaifAhmad1 <kaifahmad087@users.noreply.github.com >
2026-02-07 17:42:58 +05:30
1d7bd6f5d8
fix: add pyarrow dependency to CI to resolve ArrowExporter import errors
...
- Add pyarrow to benchmark.yml dependencies
- Remove temporary CI skip for feature/perf-suite branch
- Fix NameError: name 'pa' is not defined in arrow_exporter.py
- Ensure all 138 benchmarks run successfully in CI environment
- Maintain real ArrowExporter functionality without code changes
Co-authored-by: ZohaibHassan16 <zohaibhassan16@users.noreply.github.com >
Co-authored-by: KaifAhmad1 <kaifahmad087@users.noreply.github.com >
2026-02-07 17:37:13 +05:30
ZohaibHassan16
9b05622f8c
feat(perf): benchmark suite with regressive CLI
2026-02-06 16:31:33 +05:00