Shohei Ueda 2020-04-30 23:13:03 +09:00 committed by GitHub
parent eafac7a3ef
commit 029c1a08f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -782,13 +782,14 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: '3.8' python-version: '3.8'
architecture: 'x64'
- name: Upgrade pip - name: Upgrade pip
run: python3 -m pip install --upgrade pip run: |
# install pip=>20.1 to use "pip cache dir"
python3 -m pip install --upgrade pip
- name: Get pip cache dir - name: Get pip cache dir
id: pip-cache id: pip-cache