diff --git a/.github/actions/run-backend-tests/action.yml b/.github/actions/run-backend-tests/action.yml index 050df40098242..3f13a10f1e6dc 100644 --- a/.github/actions/run-backend-tests/action.yml +++ b/.github/actions/run-backend-tests/action.yml @@ -44,9 +44,11 @@ runs: run: echo "127.0.0.1 kafka" | sudo tee -a /etc/hosts - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ inputs.python-version }} + cache: pip + cache-dependency-path: '**/requirements*.txt' token: ${{ inputs.token }} - name: Determine if hogql-parser has changed compared to master @@ -85,9 +87,6 @@ runs: with: custom_cache_key_element: v2 - - uses: syphar/restore-pip-download-cache@v1 - if: steps.cache-backend-tests.outputs.cache-hit != 'true' - - name: Install Python dependencies if: steps.cache-backend-tests.outputs.cache-hit != 'true' shell: bash