Skip to content

Commit

Permalink
Force git to use https in workflows. #2679
Browse files Browse the repository at this point in the history
Same change in `test.yml` workflow.
  • Loading branch information
chmac committed Feb 20, 2024
1 parent a99e77d commit 75d08f6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ jobs:
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: Install dependencies
run: npm ci
- name: Test client
Expand Down Expand Up @@ -52,6 +56,10 @@ jobs:
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf
ssh://[email protected]/
- name: Install dependencies
run: npm ci
- name: Test server
Expand Down

0 comments on commit 75d08f6

Please sign in to comment.