File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 go-version :
55 description : " Go version to install"
66 required : true
7+ github-token :
8+ description : " Github Token"
9+ required : true
710runs :
811 using : " composite"
912 steps :
1316 go-version : ${{ inputs.go-version }}
1417 - name : Install project tools and dependencies
1518 shell : bash
16- run : make project-tools
19+ run : |
20+ git config --global credential.helper ""
21+ TOKEN="${{ inputs.github-token }}"
22+ git config --global url."https://${TOKEN}@github.com/".insteadOf "https://github.com/"
23+
24+ make project-tools
Original file line number Diff line number Diff line change 4444 uses : ./.github/actions/gotools
4545 with :
4646 go-version : ${{ env.GO_VERSION }}
47+ github-token : ${{ env.GITHUB_TOKEN }}
4748 - name : Setup Node
4849 uses : actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # tag=v6.0.0
4950 with :
You can’t perform that action at this time.
0 commit comments