Skip to content

Commit

Permalink
migrate to non-deprecated URL formats in git clone
Browse files Browse the repository at this point in the history
for build actions
  • Loading branch information
myk002 committed Mar 23, 2022
1 parent 6bd33fe commit 2d78422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v1
- name: Set up DFHack
run: |
git clone git://github.com/dfhack/dfhack $HOME/dfhack --depth 1 --branch develop
git clone https://github.com/DFHack/dfhack.git $HOME/dfhack --depth 1 --branch develop
git -C $HOME/dfhack submodule update --init --depth 1 --remote plugins/stonesense library/xml
rmdir $HOME/dfhack/scripts
ln -sv $(pwd) $HOME/dfhack/scripts
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
uses: actions/checkout@v1
- name: Set up DFHack
run: |
git clone git://github.com/dfhack/dfhack $HOME/dfhack --depth 1 --branch develop
git clone https://github.com/DFHack/dfhack.git $HOME/dfhack --depth 1 --branch develop
rmdir $HOME/dfhack/scripts
ln -sv $(pwd) $HOME/dfhack/scripts
- name: Check whitespace
Expand Down

0 comments on commit 2d78422

Please sign in to comment.