From 4273ddb6d05ee3ac8d0f150760adb6deb044967c Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Fri, 27 Aug 2021 15:06:51 -0700 Subject: [PATCH] Use https git clones in workflows --- .github/workflows/benchmark.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 583b6c876a..69bc244b79 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -16,6 +16,9 @@ jobs: - name: Get other system specs run: uname -a + - name: Configure git to use HTTPS + run: git config --global url."https://${{ secrets.AUTOMATED_GITHUB_PAT }}:x-oauth-basic@github.com".insteadOf ssh://git@github.com + - name: Clone Desktop repo uses: actions/checkout@v2 - name: Clone Mock-Server repo @@ -23,7 +26,7 @@ jobs: with: repository: 'signalapp/Mock-Signal-Server-Private' path: 'Mock-Server' - ref: 'alpha' + ref: 'main' token: ${{ secrets.AUTOMATED_GITHUB_PAT }} - name: Setup node.js