Depot CI supports OpenID Connect (OIDC) so your workflows can authenticate with cloud providers like AWS, GCP, and Azure using short-lived tokens instead of static credentials.
OIDC (OpenID Connect) is a standard for token-based authentication. Instead of storing long-lived credentials like API keys or passwords in your CI, your job receives a short-lived signed token that proves its identity. Your cloud provider verifies the token against Depot CI's public endpoint and grants access based on the claims inside it.
Depot CI automatically issues a signed JSON Web Token (JWT) to each job.
To use OIDC with Depot CI you'll need to configure a trust relationship between Depot CI and your cloud provider, then request the token in your workflows and use it to authenticate.
Each job in Depot CI receives a JWT. You must set permissions: id-token: write in your workflow YAML for the token to be issued.
The following is an example token:
{
"actor": "my-username",
"actor_id": "1000000",
"aud": ["sts.amazonaws.com"],
"base_ref": "",
"event_name": "push",
"exp": 1773766359,
"head_ref": "",
"iat": 1773766059,
"iss": "https://identity.depot.dev",
"job_id": "job_xxxxxxxxxxxx",
"org_id": "org_xxxxxxxxxxxxxxxxxxxx",
"ref": "refs/heads/main",
"ref_type": "branch",
"repository": "my-org/my-repo",
"repository_id": "123456789",
"repository_owner": "my-org",
"repository_owner_id": "12345678",
"repository_visibility": "private",
"run_attempt": "1",
"run_id": "run_xxxxxxxxxxxx",
"run_number": "42",
"sha": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2",
"sub": "spiffe://identity.depot.dev/org/org_xxxxxxxxxxxxxxxxxxxx/ci/github/my-org/my-repo/ref/refs/heads/main/sandbox/snd_xxxxxxxxxxxx",
"workflow": "ci.yaml",
"workflow_ref": "my-org/my-repo/ci.yaml@refs/heads/main",
"workflow_sha": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2"
}The sub claim is how you restrict a trust policy to a specific org, repository, or branch. It reads left to right, from the most stable identifier to the most ephemeral. The full claim has the following format:
spiffe://identity.depot.dev/org/<orgID>/ci/github/<owner>/<repo>/ref/<ref>/sandbox/<sandboxID>Match the segments you want to restrict, and use a wildcard for the rest. Do not include the final segment in the match, because Depot generates a new sandbox ID for each job, and a policy that pins it stops matching on the next run.
| Segment | Example | Stability | Safe to pin? |
|---|---|---|---|
spiffe://identity.depot.dev | — | Fixed. The trust domain and issuer. | Yes. |
org/<orgID> | org/org_1a2b3c4d | Stable for the life of your Depot organization. | Yes — recommended on every policy. |
ci/github/<owner>/<repo> | ci/github/my-org/my-repo | Stable per repository. <owner>/<repo> is the GitHub slug. | Yes. |
ref/<ref> | ref/refs/heads/main | The full Git ref, including the refs/heads/ prefix. Stable per branch or tag; changes when the branch does. | Yes, to lock a role to one branch. The ref contains slashes, so it spans more than one path segment. |
sandbox/<sandboxID> | sandbox/snd_9x8y7z | Per run. A fresh sandbox ID is minted for every job. | No. Pinning this segment breaks every subsequent run. |
Common patterns:
spiffe://identity.depot.dev/org/<orgID>/ci/github/<owner>/*spiffe://identity.depot.dev/org/<orgID>/ci/github/<owner>/<repo>/*spiffe://identity.depot.dev/org/<orgID>/ci/github/<owner>/<repo>/ref/refs/heads/main/sandbox/*How you pin the identity beyond the sub prefix depends on which claims your cloud provider exposes as trust-policy condition keys.
On AWS, a self-managed OIDC provider surfaces only the standard claims as IAM condition keys: aud and sub (along with amr, email, and oaud). The GitHub-compatible and Depot-specific claims (repository, repository_owner, ref, and the rest) travel inside the token but are not available as identity.depot.dev:<claim> condition keys, so a trust policy that references them never matches. On AWS, match the sub claim with StringLike as shown in Example: Configure OIDC with AWS. The sub value already encodes the org, owner, repo, and ref, so a single sub condition is enough to restrict access to a repository or branch.
On providers that map arbitrary token claims into their trust conditions, such as GCP workload identity federation, you can match the flat claims directly (repository, repository_owner, ref, and the rest of the claim reference below). These are exact-match values that carry the same meaning as their GitHub Actions equivalents, so on those platforms you can pin them exactly instead of wildcarding the sub path.
The general steps are the same for any OIDC-compatible provider:
https://identity.depot.dev as a trusted OIDC issuer.Add Depot CI as an identity provider in AWS IAM.
https://identity.depot.devsts.amazonaws.comCreate an IAM role with a trust policy.
Scope the trust policy using the sub claim (matching on Depot org and GitHub repository) and aud:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {"Federated": "arn:aws:iam::ACCOUNT:oidc-provider/identity.depot.dev"},
"Action": "sts:AssumeRoleWithWebIdentity",
"Condition": {
"StringEquals": {
"identity.depot.dev:aud": "sts.amazonaws.com"
},
"StringLike": {
"identity.depot.dev:sub": "spiffe://identity.depot.dev/org/<orgID>/ci/github/my-org/my-repo/*"
}
}
}
]
}The sub claim scopes trust to a specific Depot org and GitHub repository.
Use the role in a workflow.
Set permissions: id-token: write at the job level. Depot CI automatically injects the token request credentials into the environment, so aws-actions/configure-aws-credentials works without any extra configuration.
jobs:
deploy:
runs-on: depot-ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::123456789012:role/my-role
aws-region: us-east-1
- run: aws s3 lspermissions: id-token: write is required in your workflow YAML, the same as GitHub Actions.
The following needs to change on the cloud provider side when moving from GitHub Actions to Depot CI:
| GitHub Actions | Depot CI | |
|---|---|---|
Issuer (iss) | https://token.actions.githubusercontent.com | https://identity.depot.dev |
Subject (sub) | repo:owner/repo:ref:refs/heads/main | spiffe://identity.depot.dev/org/<orgID>/ci/github/<owner>/<repo>/ref/<ref>/sandbox/<sandboxID> |
| Repo/branch scoping | sub (encoded in the subject) | sub (new format — see above) |
| JWKS endpoint | https://token.actions.githubusercontent.com/.well-known/jwks.json | https://identity.depot.dev/keys |
To use Depot CI with OIDC, follow these steps:
Add https://identity.depot.dev as a new identity provider in your cloud provider.
Create a new trust policy for Depot CI. Creating a new policy rather than modifying your existing GitHub Actions trust policy lets both providers work in parallel during the transition.
If your existing trust policy conditions on sub, update it to use the Depot CI format:
spiffe://identity.depot.dev/org/<orgID>/ci/github/<owner>/<repo>/ref/<ref>/sandbox/<sandboxID>For more specific matches, use a wildcard:
Everything in your GitHub organization:
spiffe://identity.depot.dev/org/<orgID>/ci/github/<owner>/*A specific repository:
spiffe://identity.depot.dev/org/<orgID>/ci/github/<owner>/<repo>/*A specific branch:
spiffe://identity.depot.dev/org/<orgID>/ci/github/<owner>/<repo>/ref/<ref>/sandbox/*| Claim | Description |
|---|---|
iss | Issuer: https://identity.depot.dev |
sub | spiffe://identity.depot.dev/org/<orgID>/ci/github/<owner>/<repo>/ref/<ref>/sandbox/<sandboxID> |
aud | Audience — set by the workload request (for example sts.amazonaws.com) |
exp | Expiry time (5 minutes from issuance) |
iat | Issued at time |
| Claim | Description |
|---|---|
repository | owner/repo |
repository_owner | Repository owner |
repository_id | GitHub repository ID |
repository_owner_id | GitHub owner ID |
repository_visibility | public, private, or internal |
ref | Git ref, for example refs/heads/main |
ref_type | branch or tag |
sha | Commit SHA |
actor | Triggering user login |
actor_id | Triggering user ID |
event_name | Trigger event, for example push, pull_request |
head_ref | PR head branch |
base_ref | PR base branch |
workflow | Workflow file path |
workflow_ref | owner/repo/path@ref |
workflow_sha | Commit SHA of the workflow file |
run_id | Workflow run ID (groups jobs in a workflow run) |
run_number | Run number for the workflow |
run_attempt | Attempt number |
| Claim | Description |
|---|---|
org_id | Depot organization ID |
job_id | Depot CI job ID |