User Guide Overview
This guide explains how to deploy cicd-sensor into CI/CD pipelines and use it for runtime detection, recording, and verification.
The first decision is the runner environment you want to protect.
What to read
| Deployment path | CI/CD | Runner environment | Start here | What you get |
|---|---|---|---|---|
| GitHub-hosted | GitHub Actions | GitHub-hosted runner | GitHub-hosted runner | Graphical report and runtime-trace attestation predicate. Log delivery is also available when using the manager. |
| Machine runner | GitHub Actions | Self-hosted runner on a machine | Machine runner install, then GitHub Actions machine runner, plus Manager | Summary Log, Detection Log, Runtime Event Log, and graphical report |
| Machine runner | GitLab CI/CD | GitLab Runner Docker executor | Machine runner install, then GitLab Runner Docker executor, plus Manager | Summary Log, Detection Log, and Runtime Event Log |
| Kubernetes runner | GitHub Actions | ARC runner scale set on Kubernetes | Kubernetes runner install, then GitHub ARC runner scale sets, plus Manager | Preview support. Summary Log, Detection Log, Runtime Event Log, and Kubernetes container tracking |
| Kubernetes runner | GitLab CI/CD | GitLab Runner Kubernetes executor | Kubernetes runner install, then GitLab Runner Kubernetes executor, plus Manager | Preview support. Summary Log, Detection Log, Runtime Event Log, and Kubernetes container tracking |
| Rules | Rule author / SIRT | Rule authoring | Rules | Detection, collection, and correlation rules for CI/CD runtime events |
| Logs | Log consumer / SIEM integration | Log delivery | Logging | Log format delivered by the manager |
Usage models
GitHub-hosted runner
On GitHub-hosted runners, add cicd-sensor/cicd-sensor-action to the workflow.
The agent starts inside the job and observes runtime activity from the following steps.
flowchart LR
JOB["GitHub Actions Job"]
ACTION["cicd-sensor Action"]
AGENT["cicd-sensor Agent"]
ARTIFACTS["Job artifacts<br/>Graphical report / Attestation"]
JOB --> ACTION --> AGENT --> ARTIFACTS
classDef cicdSensor fill:#ecfdf5,stroke:#0f766e,color:#134e4a,stroke-width:1.5px;
class ACTION,AGENT cicdSensor
When a manager is configured, GitHub-hosted runners can also deliver Summary Logs, Detection Logs, and Runtime Event Logs to cloud-side outputs. The job can still produce report and attestation artifacts.
Machine runners with Manager
For GitHub Actions self-hosted runners on machines and GitLab Runner Docker executor fleets, install the cicd-sensor Agent and Docker proxy on the runner host, then use the manager for config, rules, and log delivery.
flowchart LR
AGENT["cicd-sensor Agent"]
MANAGER["cicd-sensor-manager"]
CLOUD["Cloud Outputs<br/>S3 / GCS / Pub/Sub"]
SIEM["SIEM"]
MANAGER -->|"Config / Rules"| AGENT
AGENT -->|"Summary / Detection / Runtime Event Logs"| MANAGER
MANAGER -->|"Store / Stream"| CLOUD
CLOUD --> SIEM
classDef cicdSensor fill:#ecfdf5,stroke:#0f766e,color:#134e4a,stroke-width:1.5px;
class AGENT,MANAGER cicdSensor
In machine runner deployments, config and rules come from the manager, not from the local repository.
Kubernetes runner scale sets and executors with Manager
For Kubernetes-based runners, install the cicd-sensor Agent as a node-level DaemonSet and use the manager for config, rules, and log delivery. The manager relationship is the same as machine runner deployments: the manager provides config and rules, and the Agent sends logs back to the manager.
flowchart LR
AGENT["cicd-sensor Agent"]
MANAGER["cicd-sensor-manager"]
CLOUD["Cloud Outputs<br/>S3 / GCS / Pub/Sub"]
SIEM["SIEM"]
MANAGER -->|"Config / Rules"| AGENT
AGENT -->|"Summary / Detection / Runtime Event Logs"| MANAGER
MANAGER -->|"Store / Stream"| CLOUD
CLOUD --> SIEM
classDef cicdSensor fill:#ecfdf5,stroke:#0f766e,color:#134e4a,stroke-width:1.5px;
class AGENT,MANAGER cicdSensor
See Kubernetes runner install for the shared node setup, GitHub ARC runner scale sets for GitHub Actions modes, and GitLab Runner Kubernetes executor for GitLab.
Platform support
| Platform | Environment | Status |
|---|---|---|
| GitHub Actions | GitHub-hosted runner | Supported target |
| GitHub Actions | Self-hosted runner on a machine | Supported target |
| GitHub Actions | ARC runner scale set on Kubernetes | Preview support |
| GitLab CI/CD | GitLab Runner Docker executor | Supported target |
| GitLab CI/CD | GitLab Runner Kubernetes executor | Preview support |
| GitLab CI/CD | Self-hosted Shell executor | Not planned |
| GitLab CI/CD | GitLab-hosted runner | Not supported due to technical constraints |
GitLab-hosted runners are not supported today because cicd-sensor cannot install the Agent on the runner host.