Skip to content

Commit 61b5e78

Browse files
committed
Fix Python version in Github Actions.
1 parent c5fec64 commit 61b5e78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ jobs:
141141
- name: Style dependencies
142142
if: ${{ contains(matrix.env.GATE, 'style') }}
143143
run: |
144-
sudo apt install python-pip python-setuptools
144+
sudo apt install python3-pip python3-setuptools
145145
cat common.json |
146146
jq -r '.deps.common.packages | to_entries[] | select(.key | startswith("pip:")) | (.key | split(":")[1]) + .value' |
147-
xargs sudo pip install
147+
xargs sudo pip3 install
148148
- name: Build GraalVM and run gate
149149
env: ${{ matrix.env }}
150150
run: |

0 commit comments

Comments
 (0)