From: Sebastián Ramírez Date: Tue, 25 Apr 2023 18:26:32 +0000 (-0700) Subject: 💚 Disable setup-python pip cache in CI (#9438) X-Git-Tag: 0.95.2~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=46726aa1c418ba2838187678d08860950fc0c3c3;p=thirdparty%2Ffastapi%2Ffastapi.git 💚 Disable setup-python pip cache in CI (#9438) --- diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e88c197169..1ad11f8d2c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,8 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.7" - cache: "pip" + # Issue ref: https://github.com/actions/setup-python/issues/436 + # cache: "pip" cache-dependency-path: pyproject.toml - uses: actions/cache@v3 id: cache diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1235516d33..65b29be204 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,8 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - cache: "pip" + # Issue ref: https://github.com/actions/setup-python/issues/436 + # cache: "pip" cache-dependency-path: pyproject.toml - uses: actions/cache@v3 id: cache @@ -54,7 +55,8 @@ jobs: - uses: actions/setup-python@v4 with: python-version: '3.8' - cache: "pip" + # Issue ref: https://github.com/actions/setup-python/issues/436 + # cache: "pip" cache-dependency-path: pyproject.toml - name: Get coverage files