Definition

CI/CD (Continuous Integration / Continuous Delivery) encompasses automated build, test, and deployment pipelines that validate code changes before release. Traditionally deterministic and reproducible; in 2026 evolving to incorporate agentic automation alongside conventional workflows.

GitHub Actions Dominance

github Actions is the primary CI/CD platform for millions of repositories. June 2026 developments:

Agentic vs Deterministic CI/CD

GitHub documentation explicitly states agentic workflows complement — not replace — core CI/CD. Build and release processes requiring strict reproducibility should remain conventional Actions workflows.

AspectDeterministic CI/CDAgentic Workflows
BehaviorFixed scripts, reproducibleReasoning-based, adaptive
Use caseBuild, test, deployTriage, analysis, docs, review
Security modelSecrets in jobsNo secrets in agent runtime; safe outputs gate

Security Layers (Agentic)

  1. Read-only permissions by default
  2. Agent Workflow Firewall + sandboxed containers
  3. Safe outputs validation
  4. Threat detection on proposed changes
  5. Bot PR approval gates for workflow execution

Model ID in CI/CD Pipelines

anthropic Claude API model retirements (June 15, 2026) affect CI/CD configs with hardcoded model strings in GitHub Actions, Docker, and Kubernetes. Audit claude-sonnet-4-20250514 and claude-opus-4-20250514 before cutoff (2026-06-12-anthropic-claude-api-june-15-deprecation).

Supply Chain Context

Sources