From 029c1a08f9594e3b2c581d78c258cc8e9c66f96c Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Thu, 30 Apr 2020 23:13:03 +0900 Subject: [PATCH] docs: bump actions/setup-python from v1 to v2 (#262) https://github.com/actions/setup-python/pull/87 https://github.com/actions/setup-python/pull/85 Testing https://github.com/peaceiris/mkdocs-material-boilerplate/pull/102 --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dce7dc014..a76495ae2 100644 --- a/README.md +++ b/README.md @@ -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