Skip to content

Commit

Permalink
docs: bump actions/setup-python from v1 to v2 (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris committed Apr 30, 2020
1 parent eafac7a commit 029c1a0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -782,13 +782,14 @@ jobs:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: '3.8'
architecture: 'x64'
- 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
id: pip-cache
Expand Down

0 comments on commit 029c1a0

Please sign in to comment.