Skip to content

Commit 11b3e6d

Browse files
committed
fix: Resolve CI failures for v0.7.0 release
Fix lint errors: - Remove unused Optional import from gitleaks workflow - Remove unused logging import from trufflehog activities Fix documentation broken links: - Update workspace-isolation links to use /docs/ prefix in resource-management.md - Update workspace-isolation links to use /docs/ prefix in create-workflow.md Fix benchmark dependency: - Add fuzzforge-sdk installation to benchmark workflow - SDK is required for bench_comparison.py import All CI checks should now pass.
1 parent 28ad446 commit 11b3e6d

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
python -m pip install --upgrade pip
4747
pip install -e ".[dev]"
4848
pip install pytest pytest-asyncio pytest-benchmark pytest-benchmark[histogram]
49+
pip install -e ../sdk # Install SDK for benchmarks
4950
5051
- name: Run benchmarks
5152
working-directory: ./backend

backend/toolbox/workflows/gitleaks_detection/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Additional attribution and requirements are provided in the NOTICE file.
1717

1818
from datetime import timedelta
19-
from typing import Dict, Any, Optional
19+
from typing import Dict, Any
2020

2121
from temporalio import workflow
2222
from temporalio.common import RetryPolicy

backend/toolbox/workflows/trufflehog_detection/activities.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""TruffleHog Detection Workflow Activities"""
22

3-
import logging
43
from pathlib import Path
54
from typing import Dict, Any
65
from temporalio import activity

docs/docs/concept/resource-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ docker-compose -f docker-compose.temporal.yaml logs worker-rust | grep "Evicted
563563
docker-compose -f docker-compose.temporal.yaml logs worker-rust | grep -E "Cache (HIT|MISS)"
564564
```
565565

566-
See the [Workspace Isolation](/concept/workspace-isolation) guide for complete details on isolation modes and when to use each.
566+
See the [Workspace Isolation](/docs/concept/workspace-isolation) guide for complete details on isolation modes and when to use each.
567567

568568
---
569569

docs/docs/how-to/create-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ workspace_isolation: "isolated"
110110
- Downloads once, copies per run
111111
- Balances performance and isolation
112112

113-
See the [Workspace Isolation](/concept/workspace-isolation) guide for details.
113+
See the [Workspace Isolation](/docs/concept/workspace-isolation) guide for details.
114114

115115
---
116116

0 commit comments

Comments
 (0)