From f8076dc00886157bd2e1bd828246d01274b9cb62 Mon Sep 17 00:00:00 2001 From: tarunag10 Date: Fri, 26 Jun 2026 09:27:44 +0530 Subject: [PATCH] fix: bound app token revocation cleanup (#1437) --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b18daa77..f48353f0 100644 --- a/action.yml +++ b/action.yml @@ -439,8 +439,10 @@ runs: shell: bash run: | curl -L \ + --connect-timeout 5 \ + --max-time 10 \ -X DELETE \ -H "Accept: application/vnd.github+json" \ -H "Authorization: Bearer ${{ steps.run.outputs.github_token }}" \ -H "X-GitHub-Api-Version: 2022-11-28" \ - ${GITHUB_API_URL:-https://api.github.com}/installation/token + ${GITHUB_API_URL:-https://api.github.com}/installation/token || true