Skip to content

Commit 38b5c84

Browse files
committed
Move pip install outside setup-python action
1 parent 8888c57 commit 38b5c84

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/sync.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,11 @@ jobs:
144144
python-version: ${{ inputs.version }}
145145
allow-prereleases: true
146146
cache: 'pip'
147-
pip-install: -r requirements.txt
147+
148+
- name: Install Python packages
149+
run: |
150+
python -m pip install -U pip
151+
python -m pip install -r requirements.txt
148152
149153
# 2- Remove PO files and the download files (excluding obsolete)
150154

0 commit comments

Comments
 (0)