GitHub Actions
Treat a workflow as production code with credentials. Anchor security on the trust boundary, performance on the critical path, and correctness on the execution graph. Preserve behavior deliberately and prove the changed path.
Process
Select every requested mode first:
- Audit: inspect and report without edits when selected alone.
- Modify: diagnose and change an existing workflow or Dependabot configuration.
- Create: add a new workflow, reusable workflow, or Dependabot configuration.
Modes can combine. For an audit-and-fix request, audit first, modify the authorized findings, and report both corrected and outstanding findings.
After mode selection, use Dependabot and dependency automation as the specialized process for a Dependabot-only task. Apply the workflow execution-graph process below only to repository workflows triggered by Dependabot or generated for dependency submission.
1. Map the affected pipeline
For an existing workflow, traverse every reachable local action and reusable workflow. Deduplicate source reads by immutable identity, but analyze every call edge with its caller's ref, inputs, secrets, permission ceiling, conditions, environment, and runner. When a reusable contract can change, find every affected caller. For creation, map repository conventions and candidate components implied by the requested behavior.
For every affected execution branch, identify:
- events, actors, refs, fork and Dependabot behavior, approval and hold gates, default-branch semantics, and governing Actions policies
- code, expressions, artifacts, caches, inputs, and network data each job consumes
- token permissions, secrets, OIDC claims, environments, and runner access each job receives
- the job and step graph, including
needs, conditions, outputs, matrices, background lifecycles, concurrency, and cancellation
- package manager, lockfiles, scripts, runtime versions, runner labels, and existing CI conventions
- required checks, deployment ordering, release guarantees, and the behavior users depend on
- for performance or cost work, satisfy the target and baseline gate; for cost, also collect and attribute evidence
Load the anchored reference as soon as its observed context matches:
| Observed context |
Load |
| An entrant can influence a job with authority |
Trust-boundary map and token permissions |
| A privileged or default-branch event handles contributor influence |
Privileged events |
An external dependency, checkout, local ./ or $/ action, or workflow policy matters |
Dependencies and workflow governance |
| Secrets, OIDC, environments, or cloud credentials matter |
Secrets, OIDC, and environments |
| Artifacts or caches cross jobs, workflows, refs, or trust levels |
Artifact promotion or cache-poisoning chain |
| A self-hosted runner or Actions policy matters |
Runners and network reach or platform execution protections |
| A run is held, awaits approval, or is blocked before a job starts |
Approval gates and held runs and, for policy denials, platform execution protections |
A run: block is created, changed, or reviewed |
Shell semantics, expression boundary, failure handling, and workflow data |
A run: block writes a transient file |
Runner-owned temporary storage |
GitHub API, gh, or github-script is used |
Choose the narrowest API, then its matching interface section |
workflow_dispatch is sent through an API or its run must be tracked |
Workflow dispatch |
| Secret-scanning custom patterns are automated |
Secret-scanning custom patterns |
| Dependabot configuration, alerts, dependency graphs, dependency submission, private registries, or Dependabot pull-request behavior matters |
Dependabot and dependency automation |
| Outputs, environment writes, or summaries are used |
Workflow channels |
| Events, filters, expressions, failure, cancellation, or timeouts matter |
Events and refs, expressions, or failure |
| Concurrency, matrices, or reusable contracts matter |
Concurrency, matrices, or reusable workflows |
| Latency, cost, parallelism, setup, runners, caches, or artifacts matter |
Name the target and baseline, then the matching performance section |
| Actions metrics, billing reports, dashboards, or GitHub-generated workflows matter |
Collect and attribute evidence |
Complete when: every requested mode is selected; every affected workflow, caller, reachable local dependency, and distinct call context is accounted for; every entrant, execution edge, capability, and behavioral contract is mapped; every Dependabot task satisfies its dependency-surface gate; and performance work satisfies its linked target-and-baseline gate.
2. Shape the safe execution graph
Compare the mapped graph with the target below for every selected mode. In audit-only mode, record evidence-backed divergences without editing. For modification or creation, shape this target; when combined with audit, retain the divergences as evidence for the changes:
- Choose the least-privileged event that supplies the required context.
- Establish a deny-by-default token baseline and grant each job only its required permissions.
- Constrain untrusted values crossing into privileged operations so they cannot control execution, authority selection, destination, or side-effect scope.
- Add only data, isolation, or lifecycle edges; start independent work as soon as its dependencies allow.
- Make required-check, failure, retry, timeout, cancellation, and concurrency semantics explicit.
- Give deployments and releases protected environments, immutable inputs, and deliberate queueing.
- Use locked dependency installs and explicit shell semantics where scripts depend on them.
- Make every external dependency immutable through the verification procedure below.
- Shape a performance change against the linked target and baseline, accounting for startup, compute, cache, and artifact-transfer work.
Complete when: every selected audit has compared every mapped edge with every loaded rule; every selected modification or creation has a target graph where capabilities, trust crossings, ordering, required outcomes, and deployment semantics are justified; and a performance design has an evidence-backed expected impact ready for proof.
3. Execute every selected mode
Audit
Record findings ordered by impact. In audit-only mode, return them without editing. When audit is combined with modification, mark each finding as corrected or outstanding in the final report. Each finding includes:
- severity and exact
file:line
- triggering event, actor, or input
- concrete failure, privilege, or performance path
- smallest safe correction
- validation evidence or the exact evidence gap
A security finding needs a concrete path from untrusted influence to a capability. Label defense-in-depth and stylistic hardening separately. A performance finding needs a measured bottleneck or a clearly labeled model of the critical path. State explicitly when no findings remain.
Modify
Start from observed behavior. Trace each problem through its trigger, inputs, execution path, and result. Correct it at the source with the smallest cohesive change. Preserve package-manager, lockfile, runner, naming, and workflow conventions unless one causes the problem. Update every affected caller when a reusable-workflow contract changes.
Create
Build the smallest execution graph that satisfies the requested behavior. Reuse established local actions, reusable workflows, package commands, and naming instead of introducing a second convention. After drafting, remap the generated graph and load every newly matching reference.
When an external reference changes
Treat a new action, reusable workflow, container image, or explicit upgrade as a dependency change:
Identify the intended release and read its release notes and migration guidance.
Resolve an action or reusable-workflow tag through its own repository's commit endpoint so annotated tags yield the commit SHA:
repo='OWNER/REPOSITORY'
tag='REVIEWED_RELEASE'
gh api "repos/$repo/commits/$tag" --jq .sha
gh api "repos/$repo/releases/tags/$tag" --jq '{tag_name,html_url,body}'
Verify the SHA belongs to that repository; inspect source behavior, action metadata, runtime and runner floors, permissions, and input handling relevant to this workflow.
Update the immutable reference and human-readable release comment together. Pin container images by digest.
An explicit upgrade authorizes the compatible upgrades it names. During unrelated work, preserve existing versions unless one blocks the requested behavior or has a relevant security defect.
Complete when every selected mode gate passes:
- Audit: every mapped edge and loaded rule is assessed, producing evidence-backed findings or an explicit no-findings result.
- Modify: every requested behavior is corrected at its source, affected callers are updated, and the resulting graph is remapped.
- Create: every requested behavior is present in the smallest conforming graph, and the generated graph is remapped.
- Dependency change: every changed reference resolves to the reviewed immutable object and its runtime contract remains compatible.
- Dependabot: every affected dependency surface and automation plane satisfies the Dependabot criterion.
4. Prove the workflow
- Run the repository's configured workflow lint command; otherwise run
actionlint against every affected workflow.
- For a modified local action, validate its metadata with the configured schema tool and exercise its declared inputs, outputs, entrypoint, post behavior, and representative caller.
- Run each configured Actions security analyzer and reconcile its output with the trust-boundary map; static analysis supplements path tracing.
- Run safe underlying commands from changed
run: steps with the repository's locked dependency state. Use a documented dry-run for release or deployment commands.
- For performance changes, satisfy the performance criterion. Report inaccessible remote execution as the exact measurement gap.
- For combined Dependabot and workflow changes, also satisfy the Dependabot validation and criterion.
- Recheck the complete affected graph: event, approval, hold, and policy semantics; permissions, secrets, OIDC, environments, and runners; dependency pins; local and reusable contracts; outputs, matrices, caches, artifacts, concurrency, background barriers, and
needs.
- Report exact commands and outcomes. Name an unavailable runner, credential, service, policy, or tool as a verification gap.
Complete when: every affected workflow, modified action manifest, and modified Dependabot configuration has passing applicable validation or an exact tool blocker; every changed behavior has direct execution evidence or an exact external blocker; every security conclusion names the traced path; and every optimization satisfies the linked performance criterion.
1---2name: github-actions3description: Harden GitHub Actions and Dependabot: create or modify workflow YAML, reusable workflows, or .github/dependabot.yml; configure dependency updates, alerts, graphs, private registries, and pull-request automation; audit security, correctness, reliability, cost, or performance.4---56# GitHub Actions78Treat a workflow as production code with credentials. Anchor security on the **trust boundary**, performance on the **critical path**, and correctness on the **execution graph**. Preserve behavior deliberately and prove the changed path.910## Process1112Select every requested mode first:1314- **Audit:** inspect and report without edits when selected alone.15- **Modify:** diagnose and change an existing workflow or Dependabot configuration.16- **Create:** add a new workflow, reusable workflow, or Dependabot configuration.1718Modes can combine. For an audit-and-fix request, audit first, modify the authorized findings, and report both corrected and outstanding findings.1920After mode selection, use [Dependabot and dependency automation](references/dependabot.md) as the specialized process for a Dependabot-only task. Apply the workflow execution-graph process below only to repository workflows triggered by Dependabot or generated for dependency submission.2122### 1. Map the affected pipeline2324For an existing workflow, traverse every reachable local action and reusable workflow. Deduplicate source reads by immutable identity, but analyze every call edge with its caller's ref, inputs, secrets, permission ceiling, conditions, environment, and runner. When a reusable contract can change, find every affected caller. For creation, map repository conventions and candidate components implied by the requested behavior.2526For every affected execution branch, identify:2728- events, actors, refs, fork and Dependabot behavior, approval and hold gates, default-branch semantics, and governing Actions policies29- code, expressions, artifacts, caches, inputs, and network data each job consumes30- token permissions, secrets, OIDC claims, environments, and runner access each job receives31- the job and step graph, including `needs`, conditions, outputs, matrices, background lifecycles, concurrency, and cancellation32- package manager, lockfiles, scripts, runtime versions, runner labels, and existing CI conventions33- required checks, deployment ordering, release guarantees, and the behavior users depend on34- for performance or cost work, satisfy the [target and baseline gate](references/performance.md#name-the-target-and-baseline); for cost, also [collect and attribute evidence](references/performance.md#collect-and-attribute-evidence)3536Load the anchored reference as soon as its observed context matches:3738| Observed context | Load |39| --- | --- |40| An entrant can influence a job with authority | [Trust-boundary map](references/security.md#map-the-trust-boundary) and [token permissions](references/security.md#token-permissions) |41| A privileged or default-branch event handles contributor influence | [Privileged events](references/security.md#privileged-events) |42| An external dependency, checkout, local `./` or `$/` action, or workflow policy matters | [Dependencies and workflow governance](references/security.md#dependencies-and-workflow-governance) |43| Secrets, OIDC, environments, or cloud credentials matter | [Secrets, OIDC, and environments](references/security.md#secrets-oidc-and-environments) |44| Artifacts or caches cross jobs, workflows, refs, or trust levels | [Artifact promotion](references/security.md#artifact-promotion) or [cache-poisoning chain](references/security.md#cache-poisoning-chain) |45| A self-hosted runner or Actions policy matters | [Runners and network reach](references/security.md#runners-and-network-reach) or [platform execution protections](references/security.md#platform-execution-protections) |46| A run is held, awaits approval, or is blocked before a job starts | [Approval gates and held runs](references/reliability.md#approval-gates-and-held-runs) and, for policy denials, [platform execution protections](references/security.md#platform-execution-protections) |47| A `run:` block is created, changed, or reviewed | [Shell semantics](references/shell.md#select-shell-semantics-explicitly), [expression boundary](references/shell.md#cross-the-expression-boundary-through-env), [failure handling](references/shell.md#handle-failure-as-data-only-when-expected), and [workflow data](references/shell.md#write-workflow-data-safely) |48| A `run:` block writes a transient file | [Runner-owned temporary storage](references/shell.md#use-runner-owned-temporary-storage) |49| GitHub API, `gh`, or `github-script` is used | [Choose the narrowest API](references/api.md#choose-the-narrowest-interface), then its matching interface section |50| `workflow_dispatch` is sent through an API or its run must be tracked | [Workflow dispatch](references/api.md#workflow-dispatch) |51| Secret-scanning custom patterns are automated | [Secret-scanning custom patterns](references/secret-scanning.md) |52| Dependabot configuration, alerts, dependency graphs, dependency submission, private registries, or Dependabot pull-request behavior matters | [Dependabot and dependency automation](references/dependabot.md) |53| Outputs, environment writes, or summaries are used | [Workflow channels](references/api.md#workflow-channels) |54| Events, filters, expressions, failure, cancellation, or timeouts matter | [Events and refs](references/reliability.md#events-and-refs), [expressions](references/reliability.md#expressions-and-conditions), or [failure](references/reliability.md#failure-cancellation-and-time-bounds) |55| Concurrency, matrices, or reusable contracts matter | [Concurrency](references/reliability.md#concurrency), [matrices](references/reliability.md#matrices), or [reusable workflows](references/reliability.md#reusable-workflows) |56| Latency, cost, parallelism, setup, runners, caches, or artifacts matter | [Name the target and baseline](references/performance.md#name-the-target-and-baseline), then the matching performance section |57| Actions metrics, billing reports, dashboards, or GitHub-generated workflows matter | [Collect and attribute evidence](references/performance.md#collect-and-attribute-evidence) |5859**Complete when:** every requested mode is selected; every affected workflow, caller, reachable local dependency, and distinct call context is accounted for; every entrant, execution edge, capability, and behavioral contract is mapped; every Dependabot task satisfies its [dependency-surface gate](references/dependabot.md#map-the-dependency-surface-from-current-support); and performance work satisfies its linked target-and-baseline gate.6061### 2. Shape the safe execution graph6263Compare the mapped graph with the target below for every selected mode. In audit-only mode, record evidence-backed divergences without editing. For modification or creation, shape this target; when combined with audit, retain the divergences as evidence for the changes:6465- Choose the least-privileged event that supplies the required context.66- Establish a deny-by-default token baseline and grant each job only its required permissions.67- Constrain untrusted values crossing into privileged operations so they cannot control execution, authority selection, destination, or side-effect scope.68- Add only data, isolation, or lifecycle edges; start independent work as soon as its dependencies allow.69- Make required-check, failure, retry, timeout, cancellation, and concurrency semantics explicit.70- Give deployments and releases protected environments, immutable inputs, and deliberate queueing.71- Use locked dependency installs and explicit shell semantics where scripts depend on them.72- Make every external dependency immutable through the verification procedure below.73- Shape a performance change against the linked target and baseline, accounting for startup, compute, cache, and artifact-transfer work.7475**Complete when:** every selected audit has compared every mapped edge with every loaded rule; every selected modification or creation has a target graph where capabilities, trust crossings, ordering, required outcomes, and deployment semantics are justified; and a performance design has an evidence-backed expected impact ready for proof.7677### 3. Execute every selected mode7879#### Audit8081Record findings ordered by impact. In audit-only mode, return them without editing. When audit is combined with modification, mark each finding as corrected or outstanding in the final report. Each finding includes:8283- severity and exact `file:line`84- triggering event, actor, or input85- concrete failure, privilege, or performance path86- smallest safe correction87- validation evidence or the exact evidence gap8889A security finding needs a concrete path from untrusted influence to a capability. Label defense-in-depth and stylistic hardening separately. A performance finding needs a measured bottleneck or a clearly labeled model of the critical path. State explicitly when no findings remain.9091#### Modify9293Start from observed behavior. Trace each problem through its trigger, inputs, execution path, and result. Correct it at the source with the smallest cohesive change. Preserve package-manager, lockfile, runner, naming, and workflow conventions unless one causes the problem. Update every affected caller when a reusable-workflow contract changes.9495#### Create9697Build the smallest execution graph that satisfies the requested behavior. Reuse established local actions, reusable workflows, package commands, and naming instead of introducing a second convention. After drafting, remap the generated graph and load every newly matching reference.9899#### When an external reference changes100101Treat a new action, reusable workflow, container image, or explicit upgrade as a dependency change:1021031. Identify the intended release and read its release notes and migration guidance.1042. Resolve an action or reusable-workflow tag through its own repository's commit endpoint so annotated tags yield the commit SHA:105106 ```bash107 repo='OWNER/REPOSITORY'108 tag='REVIEWED_RELEASE'109 gh api "repos/$repo/commits/$tag" --jq .sha110 gh api "repos/$repo/releases/tags/$tag" --jq '{tag_name,html_url,body}'111 ```1121133. Verify the SHA belongs to that repository; inspect source behavior, action metadata, runtime and runner floors, permissions, and input handling relevant to this workflow.1144. Update the immutable reference and human-readable release comment together. Pin container images by digest.115116An explicit upgrade authorizes the compatible upgrades it names. During unrelated work, preserve existing versions unless one blocks the requested behavior or has a relevant security defect.117118**Complete when every selected mode gate passes:**119120- **Audit:** every mapped edge and loaded rule is assessed, producing evidence-backed findings or an explicit no-findings result.121- **Modify:** every requested behavior is corrected at its source, affected callers are updated, and the resulting graph is remapped.122- **Create:** every requested behavior is present in the smallest conforming graph, and the generated graph is remapped.123- **Dependency change:** every changed reference resolves to the reviewed immutable object and its runtime contract remains compatible.124- **Dependabot:** every affected dependency surface and automation plane satisfies the [Dependabot criterion](references/dependabot.md#dependabot-criterion).125126### 4. Prove the workflow1271281. Run the repository's configured workflow lint command; otherwise run `actionlint` against every affected workflow.1292. For a modified local action, validate its metadata with the configured schema tool and exercise its declared inputs, outputs, entrypoint, post behavior, and representative caller.1303. Run each configured Actions security analyzer and reconcile its output with the trust-boundary map; static analysis supplements path tracing.1314. Run safe underlying commands from changed `run:` steps with the repository's locked dependency state. Use a documented dry-run for release or deployment commands.1325. For performance changes, satisfy the [performance criterion](references/performance.md#performance-criterion). Report inaccessible remote execution as the exact measurement gap.1336. For combined Dependabot and workflow changes, also satisfy the [Dependabot validation and criterion](references/dependabot.md#validate-operation-not-only-yaml).1347. Recheck the complete affected graph: event, approval, hold, and policy semantics; permissions, secrets, OIDC, environments, and runners; dependency pins; local and reusable contracts; outputs, matrices, caches, artifacts, concurrency, background barriers, and `needs`.1358. Report exact commands and outcomes. Name an unavailable runner, credential, service, policy, or tool as a verification gap.136137**Complete when:** every affected workflow, modified action manifest, and modified Dependabot configuration has passing applicable validation or an exact tool blocker; every changed behavior has direct execution evidence or an exact external blocker; every security conclusion names the traced path; and every optimization satisfies the linked performance criterion.