Skip to content

Commit 50e2cdb

Browse files
starseekercshorler
authored andcommitted
Fix git clone lines to use https
Github has disabled git:// protocol support, so we need to switch: https://github.blog/2021-09-01-improving-git-protocol-security-github/
1 parent 1f184ea commit 50e2cdb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,9 @@ jobs:
185185
186186
- name: Checkout
187187
run: |
188-
git clone --depth 1 git://github.com/BRL-CAD/brlcad.git -b main
188+
git clone --depth 1 https://github.com/BRL-CAD/brlcad.git -b main
189189
cd brlcad/src/other/ext && rm -rf stepcode
190-
git clone --depth 1 git://github.com/stepcode/stepcode.git -b develop
190+
git clone --depth 1 https://github.com/stepcode/stepcode.git -b develop
191191
# Ordinarily BRL-CAD keeps track of what files are supposed to be
192192
# present in the repository. In this case we're not interested in
193193
# updating the list to the working stepcode filelist, so use an empty
@@ -242,10 +242,10 @@ jobs:
242242

243243
- name: Checkout
244244
run: |
245-
git clone --depth 1 git://github.com/BRL-CAD/brlcad.git -b main
245+
git clone --depth 1 https://github.com/BRL-CAD/brlcad.git -b main
246246
cd brlcad/src/other/ext
247247
cmake -E rm -r stepcode
248-
git clone --depth 1 git://github.com/stepcode/stepcode.git -b develop
248+
git clone --depth 1 https://github.com/stepcode/stepcode.git -b develop
249249
# Ordinarily BRL-CAD keeps track of what files are supposed to be
250250
# present in the repository. In this case we're not interested in
251251
# updating the list to the working stepcode filelist, so use an empty

0 commit comments

Comments
 (0)