From 55913a73361fc8fb1bfef98bfa87c857aac038cf Mon Sep 17 00:00:00 2001 From: Pulkit Kathuria Date: Sun, 28 Jan 2024 13:14:05 +0900 Subject: [PATCH] no -s --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index ac85b07..4acf770 100644 --- a/action.yml +++ b/action.yml @@ -78,7 +78,7 @@ runs: if: ${{inputs.pr_comment != 'true' && inputs.destroy != 'true'}} shell: bash run: | - curl -sLk --fail \ + curl -Lk --fail \ -X POST \ -x "${{ inputs.http_proxy }}" \ -H 'Content-Type: application/json' \ @@ -102,7 +102,7 @@ runs: if: ${{inputs.pr_comment == 'true' && github.event_name == 'pull_request' && steps.branch-name.outputs.base_ref_branch != ''}} shell: bash run: | - response=$(curl -sLk \ + response=$(curl -Lk \ -X GET \ -x "${{ inputs.http_proxy }}" \ -H 'Content-Type: application/json' \ @@ -130,7 +130,7 @@ runs: if: ${{inputs.destroy == 'true'}} shell: bash run: | - curl -sLk --fail \ + curl -Lk --fail \ -X POST \ -x "${{ inputs.http_proxy }}" \ -H 'Content-Type: application/json' \