Skip to content

Commit b36fcd7

Browse files
committed
build: Use apt-get instead of apt
1 parent a806a56 commit b36fcd7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
apt update &&
3333
apt install -y software-properties-common curl &&
3434
add-apt-repository ppa:deadsnakes/ppa -y &&
35-
apt install -y python$PY_VER python$PY_VER-dev python$PY_VER-venv &&
35+
apt-get update && apt-get install -y python$PY_VER python$PY_VER-dev python$PY_VER-venv &&
3636
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python$PY_VER 1 &&
3737
python$PY_VER -m venv /tmp/venv &&
3838
/tmp/venv/bin/pip install --upgrade pip

0 commit comments

Comments
 (0)