Upgrade pip used in GitHub Actions
From pip 20.1+ onward, "pip cache dir" can be used to find location of pip cache, and this is useful across all three major OSes supported by GitHub Actions.
This commit is contained in:
parent
621de4d882
commit
fa1a8e8371
|
@ -43,7 +43,7 @@ jobs:
|
|||
|
||||
- name: Install Python packages
|
||||
run: |
|
||||
pip install --upgrade codecov tox setuptools
|
||||
pip install --upgrade codecov tox setuptools pip
|
||||
pip list
|
||||
|
||||
- name: Display tool versions
|
||||
|
@ -114,7 +114,7 @@ jobs:
|
|||
|
||||
- name: Install Python packages
|
||||
run: |
|
||||
pip install --upgrade tox
|
||||
pip install --upgrade tox pip
|
||||
pip list
|
||||
|
||||
- name: Display tool versions
|
||||
|
@ -166,7 +166,7 @@ jobs:
|
|||
|
||||
- name: Install Python packages
|
||||
run: |
|
||||
pip install --upgrade tox
|
||||
pip install --upgrade tox pip
|
||||
pip list
|
||||
|
||||
- name: Display tool versions
|
||||
|
|
Loading…
Reference in New Issue