Skip to content

Commit 029c1a0

Browse files
authored
1 parent eafac7a commit 029c1a0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -782,13 +782,14 @@ jobs:
782782
- uses: actions/checkout@v2
783783
784784
- name: Setup Python
785-
uses: actions/setup-python@v1
785+
uses: actions/setup-python@v2
786786
with:
787787
python-version: '3.8'
788-
architecture: 'x64'
789788
790789
- name: Upgrade pip
791-
run: python3 -m pip install --upgrade pip
790+
run: |
791+
# install pip=>20.1 to use "pip cache dir"
792+
python3 -m pip install --upgrade pip
792793
793794
- name: Get pip cache dir
794795
id: pip-cache

0 commit comments

Comments
 (0)