From 18d35ffdbf545f4211827450e228995a577f4cec Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Mon, 16 Oct 2023 12:34:54 -0400 Subject: [PATCH] Call python to upgrade pip in Windows CI --- .github/workflows/windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4988e323e2b..98cbb9acc40 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -36,7 +36,7 @@ jobs: id: pip-cache shell: bash run: | - pip install --upgrade pip + python -m pip install --upgrade pip echo "dir=$(pip cache dir)" | tee ${GITHUB_OUTPUT} - name: restore Python cache directory uses: actions/cache@v3