Skip to content

Commit

Permalink
Revert "Add debug step to log OIDC ID token (#11)"
Browse files Browse the repository at this point in the history
This reverts commit 58d7680.
  • Loading branch information
hmarr authored Sep 12, 2023
1 parent 58d7680 commit 5873db7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 26 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,9 @@ on:
pull_request:

jobs:
debug:
permissions:
actions: read
id-token: write
contents: read
uses: bdehamer/workflows/.github/workflows/oidc-dump.yml@main
build:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- run: |
echo "URL:${ACTIONS_ID_TOKEN_REQUEST_URL}"
echo "TOKEN:${ACTIONS_ID_TOKEN_REQUEST_TOKEN}"
curl "${ACTIONS_ID_TOKEN_REQUEST_URL}&audience=donottrust" \
-H "Authorization: bearer ${ACTIONS_ID_TOKEN_REQUEST_TOKEN}" \
-H "Accept: application/json; api-version=2.0" \
-H "Content-Type: application/json" \
--silent | jq -r '.value' > oidc_token
echo -e "\nOIDC Token (encoded)"
cat oidc_token
echo -e "\nOIDC Token (decoded)"
cat oidc_token | jq -R 'split(".") | .[0],.[1] | @base64d | fromjson'
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@ on:
release:
types: [created]
jobs:
debug:
permissions:
actions: read
id-token: write
contents: read
uses: bdehamer/workflows/.github/workflows/oidc-dump.yml@main
build:
runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit 5873db7

Please sign in to comment.