From 2a1a5cb0a5b232487894dafdfa7200a96f1b1d4b Mon Sep 17 00:00:00 2001 From: Sajith Sasidharan Date: Mon, 18 Jan 2021 13:32:53 -0500 Subject: [PATCH] GitHub Actions have sufficiently recent pip At the time of writing this commit message, GitHub Actions offers pip v20.3.3 for both ubuntu-latest and windows-latest, and pip v20.3.1 for macos-latest. Those are sufficiently recent pip versions that have "cache dir" sub-command. --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1943933b2..c3f32c919 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -193,7 +193,6 @@ jobs: - name: Get pip cache directory id: pip-cache run: | - pip --version echo "::set-output name=dir::$(pip cache dir)" - name: Use pip cache