Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
47 of your 141 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 11.33s · analysis 22.7s · 35.1 MB · GitHub API rate-limit (preflight)

temporalio/temporal

https://github.com/temporalio/temporal · scanned 2026-06-05 20:12 UTC (4 days, 12 hours ago) · 10 languages

467 raw signals (125 security + 342 graph) 11/13 scanners ran 30th percentile · Go · huge (>500K LoC) System graph score 76 (higher by 5)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 12 hours ago · v2 · 155 actionable findings from 2 signal sources. 141 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 85.0 0.20 17.00
documentation_score 80.0 0.15 12.00
practices_score 72.0 0.15 10.80
code_quality 70.0 0.10 7.00
Overall 1.00 80.8
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: source: legacy × excluding tests × Reset all
Scan summary Quality grade A- (81/100). Dimensions: security 100, maintainability 60. 125 findings (32 security). 821,351 lines analyzed.

Showing 17 of 155 actionable findings. 296 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical Security checks cicd CI/CD security conf 0.96 4 occurrences Compose service contains a literal secret environment value
Rotate the value if real. Move it to Docker Compose secrets, a platform secret manager, or an uncommitted environment file.
2 files, 4 locations
develop/docker-compose/docker-compose.yml:5, 27 (2 hits)
develop/github/docker-compose.yml:20, 33 (2 hits)
CI/CD securitycontainers
high Security checks quality Quality conf 1.00 [SEC090] Go: math/rand used near crypto context: math/rand is not cryptographically secure. Use crypto/rand for tokens/keys. Ported from gosec G404 (Apache-2.0).
import `crypto/rand` and use `rand.Read(buf)`.
common/goro/adaptive_pool.go:4
high Security checks quality Quality conf 1.00 [SEC090] Go: math/rand used near crypto context: math/rand is not cryptographically secure. Use crypto/rand for tokens/keys. Ported from gosec G404 (Apache-2.0).
import `crypto/rand` and use `rand.Read(buf)`.
common/backoff/jitter.go:3
high Security checks cicd CI/CD security conf 0.90 11 occurrences Database service has no persistent data volume
Mount the database data directory to a named Docker volume or managed persistent disk, and document backup and restore testing.
2 files, 11 locations
develop/github/docker-compose.yml:6, 20, 33, 47, 62, 78, 94 (7 hits)
develop/docker-compose/docker-compose.yml:5, 16, 27, 37 (4 hits)
CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.84 11 occurrences Database service publishes a host port
Use `expose` for service-to-service access, bind to 127.0.0.1 for local-only access, or protect the port with firewall rules.
2 files, 11 locations
develop/github/docker-compose.yml:6, 20, 33, 47, 62, 78, 94 (7 hits)
develop/docker-compose/docker-compose.yml:5, 16, 27, 37 (4 hits)
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 57 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
12 files, 56 locations
.github/workflows/run-tests.yml:40, 220, 224, 232, 240, 247, 270, 276, +10 more (22 hits)
.github/workflows/ci-success-report.yml:35, 42, 48 (6 hits)
.github/workflows/optimize-test-sharding.yml:23, 30, 36 (6 hits)
.github/workflows/build-and-publish.yml:25, 49 (4 hits)
.github/workflows/check-release-dependencies.yml:17, 20 (4 hits)
.github/workflows/features-integration.yml:23, 59 (4 hits)
.github/workflows/flaky-tests-report.yml:35, 42, 49, 78 (4 hits)
.github/workflows/promote-docker-image.yml:36, 100 (2 hits)
CI/CD securitySupply chainGitHub Actions
high Security checks cicd CI/CD security conf 0.90 ✓ Repobility 7 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `temporalio/features/.github/workflows/typescript.yaml` pinned to mutable ref `@main`: `uses: temporalio/features/.github/workflows/typescript.yaml@main` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files c…
lines 72, 82, 90, 105, 113, 121, 129
.github/workflows/features-integration.yml:72, 82, 90, 105, 113, 121, 129 (7 hits)
CI/CD securitySupply chainGitHub Actions
medium Security checks cicd CI/CD security conf 0.94 4 occurrences Compose service `prometheus` image uses the latest tag
Pin to a maintained version tag or digest and update it deliberately through dependency automation.
lines 59, 69, 77, 84
develop/docker-compose/docker-compose.yml:59, 69, 77, 84 (4 hits)
CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.86 Database dump or local database file is included in Docker build context
Move database dumps outside the Docker build context or exclude them with .dockerignore. Keep backup and restore artifacts in private object storage or a dedicated backup workflow.
.dockerignore CI/CD securitycontainers
medium Security checks cicd CI/CD security conf 0.88 4 occurrences Database service has no healthcheck
Add a database-native healthcheck such as pg_isready, mysqladmin ping, redis-cli ping, or the vendor's readiness command.
lines 5, 16, 27, 37
develop/docker-compose/docker-compose.yml:5, 16, 27, 37 (4 hits)
CI/CD securitycontainers
high Security checks quality Quality conf 0.82 Parallel implementation file sits beside a canonical file
Merge the intended change into the canonical file, update tests/imports, and delete the parallel implementation if it is not the active entry point.
chasm/lib/workflow/workflow_update.go:1
low Security checks quality Error handling conf 1.00 3 occurrences [ERR003] Ignored Error (Go): Ignoring error return values.
Handle the error or use errcheck linter.
3 files, 3 locations
chasm/path_encoder.go:66
cmd/server/main.go:30
cmd/tools/check-dependencies/main.go:207
high Security checks cicd CI/CD security conf 0.56 Compose service does not declare a runtime user
Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive.
develop/github/docker-compose.yml:6 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.56 Compose service does not declare a runtime user
Set a non-root `user:` in Compose or ensure the final image stage has a non-root USER directive.
develop/docker-compose/docker-compose.yml:16 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
develop/github/docker-compose.yml:6 CI/CD securitycontainers
high Security checks cicd CI/CD security conf 0.62 Compose service lacks no-new-privileges hardening
Add `security_opt: ["no-new-privileges:true"]` unless the service has a documented need for privilege escalation.
develop/docker-compose/docker-compose.yml:16 CI/CD securitycontainers
low Security checks quality Quality conf 0.60 17 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 15 locations
common/archiver/s3store/util.go:111, 205, 218 (3 hits)
common/archiver/s3store/query_parser.go:2, 63 (2 hits)
chasm/lib/nexusoperation/validator.go:291
client/history/metric_client.go:73
common/archiver/gcloud/history_archiver.go:231
common/archiver/gcloud/query_parser.go:57
common/archiver/gcloud/query_parser_mock.go:2
common/archiver/gcloud/util.go:98
duplicationquality
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/19ff4f2c-b153-470f-8aae-2d732aee401a/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/19ff4f2c-b153-470f-8aae-2d732aee401a/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.