Skip to content

Commit

Permalink
Switch from wget to curl in CI
Browse files Browse the repository at this point in the history
GitHub reports 403 to wget for some reason
  • Loading branch information
AMDmi3 committed Aug 28, 2023
1 parent 9013212 commit c06560a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
mkdir _libversion
cd _libversion
wget -qO- https://github.com/repology/libversion/archive/master.tar.gz | tar -xzf- --strip-components 1
curl -sL https://github.com/repology/libversion/archive/master.tar.gz | tar -xzf- --strip-components 1
cmake .
make
sudo make install
Expand All @@ -31,7 +31,7 @@ jobs:
run: |
mkdir _postgresql-libversion
cd _postgresql-libversion
wget -qO- https://github.com/repology/postgresql-libversion/archive/master.tar.gz | tar -xzf- --strip-components 1
curl -sL https://github.com/repology/postgresql-libversion/archive/master.tar.gz | tar -xzf- --strip-components 1
make
sudo make install
- name: Install python dependencies
Expand Down

0 comments on commit c06560a

Please sign in to comment.