Skip to content

Commit f8076dc

Browse files
authored
fix: bound app token revocation cleanup (#1437)
1 parent 5211368 commit f8076dc

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,8 +439,10 @@ runs:
439439
shell: bash
440440
run: |
441441
curl -L \
442+
--connect-timeout 5 \
443+
--max-time 10 \
442444
-X DELETE \
443445
-H "Accept: application/vnd.github+json" \
444446
-H "Authorization: Bearer ${{ steps.run.outputs.github_token }}" \
445447
-H "X-GitHub-Api-Version: 2022-11-28" \
446-
${GITHUB_API_URL:-https://api.github.com}/installation/token
448+
${GITHUB_API_URL:-https://api.github.com}/installation/token || true

0 commit comments

Comments
 (0)