Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# ⚠️ Archival notice

Due to the lack of time we could allocate to this repo, we've decided to archive it.

You can use [`steve-todorov`'s version](https://github.com/steve-todorov/oidc-debugger-action/blob/f9915fe9dc64133704c072eb59436373c23e9fdd/action.yml) instead.

If you want just the code ([reference](https://github.com/github/actions-oidc-debugger/issues/30#issuecomment-3169059282), thanks again to `steve-todorov`):
```yaml
- name: Show OIDC claims (right before assume)
env:
AUDIENCE: "sts.amazonaws.com"
run: |
TOKEN_JSON=$(curl -s -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOKEN_REQUEST_URL&audience=$AUDIENCE")
ID_TOKEN=$(echo "$TOKEN_JSON" | jq -r .value)
echo "$ID_TOKEN" | awk -F. '{print $2}' | base64 -d 2>/dev/null | jq -r
```

---

# actions-oidc-debugger

This action requests a JWT and prints the claims included within the JWT received from GitHub Actions.
Expand Down
Loading