diff --git a/.github/workflows/Test-CI-dev.yml b/.github/workflows/Test-CI-dev.yml index 36597b3a..6e97a5ff 100644 --- a/.github/workflows/Test-CI-dev.yml +++ b/.github/workflows/Test-CI-dev.yml @@ -86,21 +86,6 @@ jobs: with: python-version: "3.11" - - name: Get latest classiq version for cache key - id: classiq-version - run: | - echo "LATEST_CLASSIQ_VERSION=$(pip index versions classiq 2>/dev/null | grep classiq | cut -d '(' -f2 | cut -d ')' -f1)" >> $GITHUB_OUTPUT - - # The caching we do follows from - # https://stackoverflow.com/questions/59127258/how-can-i-use-pip-cache-in-github-actions - - uses: actions/cache@v2 - id: cache-pip - with: - path: ~/.cache/pip - key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements*.txt') }}-classiq-${{steps.classiq-version.outputs.LATEST_CLASSIQ_VERSION}} - restore-keys: | - ${{ runner.os }}-venv- - - name: Install dependencies if: steps.cache-pip.outputs.cache-hit != 'true' run: |