背景${{ secrets.GITHUB_TOKEN }} ではトークンの権限が不足していてプライベートレポジトリのパッケージをgo getできなかった。 何をしたかGithub ActionsのGo言語用のworkflowにある以下のジョブで失敗する。 プライベートレポジトリのパッケージがgo.modに指定しているため。 - name: Get dependencies run: | go get -v -t -d ./... if [ -f Gopkg.toml ]; then curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh dep ensure fi対応として以下を差し込んでみた。 git config --global url."https://${{ secrets.GITHUB_T