From 8a7be4644cb057e4153fba5b0042545da7e8da7c Mon Sep 17 00:00:00 2001 From: Julien Fabre Date: Wed, 10 May 2023 12:54:54 -0600 Subject: [PATCH] Use PAT for tests --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7399bdac..76ed5be3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,6 +62,11 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Configure git for private modules + env: + TOKEN: ${{ secrets.PAT }} + run: git config --global url."https://Pryz:${TOKEN}@github.com".insteadOf "https://github.com" + - name: Set up Go uses: actions/setup-go@v3 with: