Docs
Reference

GitHub Enterprise Cloud (data residency)

Workflows on your GHE.com enterprise authenticate with a subject your enterprise issues.

Workflows on your GHE.com enterprise authenticate with a subject your enterprise issues.

What proves the identity

The token has to come from https://token.actions.acme.ghe.com, and its sub claim has to match the workload you named. penv compares that claim byte for byte, with no wildcards.

Every token also has to name your workspace as its audience. Ask for this audience and no other. A token requested for two audiences fails every exchange.

What the console asks for

FieldExampleAdvancedWhat it pins
Enterprise subdomainacmenoThe name in your acme.ghe.com URL, without the domain.
Subjectrepo:acme/api:ref:refs/heads/mainnoThe snippet's decode line prints it from a real token. Repositories created or renamed since July 2026 carry ids inside it.

The console also asks which project and environment this identity reaches and which role it gets, with the credential lifetime behind Advanced.

What the trust holds

Built from the example answers above:

WhatValue
Issuerhttps://token.actions.acme.ghe.com
Claim comparedsub
Subjectrepo:acme/api:ref:refs/heads/main
Identity nameghecom-acme-repo-acme-api-ref-refs-heads-main

penv names the identity for you, so the form never asks for one.

The snippet the console prints

permissions:
  id-token: write          # without this, no token is issued at all

steps:
  - run: |
      T=$(curl -sS \
        -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" \
        "$ACTIONS_ID_TOKEN_REQUEST_URL&audience=YOUR_WORKSPACE_ID" | jq -r .value)
      # Run this line once and paste what it prints into penv's Subject field.
      echo "$T" | jq -R 'split(".")[1] | @base64d | fromjson | .sub'
      C=$(curl -sS "https://penv.cloud/api/v1/auth/oidc" \
        -H 'content-type: application/json' \
        -d "{\"token\":\"$T\"}" | jq -r .credential)
      PENV_TOKEN="$C" penv pull

The snippet finishes with penv pull, which writes a file. penv run is the path the docs teach for a process, and penv pull is for a host that needs a file on disk. Connect your CI has the wrapped step.