From 53a08ebc1221592f9025950cbb4b5a95ea4ba25a Mon Sep 17 00:00:00 2001 From: Zakary Timson Date: Fri, 24 Nov 2023 16:24:40 +0000 Subject: [PATCH] Update clone/action.yaml --- clone/action.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/clone/action.yaml b/clone/action.yaml index 951b8e1..d26a8c6 100644 --- a/clone/action.yaml +++ b/clone/action.yaml @@ -7,8 +7,6 @@ inputs: required: false description: Repository URL that will be cloned default: ${{github.server_url}}/${{github.repository}}.git - -secrets: token: type: string required: false @@ -19,7 +17,7 @@ runs: using: composite steps: - name: Creat authorized Git URL - run: echo "URL=$(echo ${{inputs.url}} | sed s%://%://${{secrets.token}}@% )" >> $GITHUB_ENV + run: echo "URL=$(echo ${{inputs.url}} | sed s%://%://${{inputs.token}}@% )" >> $GITHUB_ENV shell: sh - name: Clone repository uses: docker://alpine/git