diff --git a/.github/workflows/pull-request-management.yml b/.github/workflows/pull-request-management.yml index 4e6f7713db2..b78a7522ce9 100644 --- a/.github/workflows/pull-request-management.yml +++ b/.github/workflows/pull-request-management.yml @@ -343,6 +343,7 @@ jobs: 3.13 cache: 'pip' - name: 'Install Python requirements' + # addding condition might not check for any upgrade, need to test this if: steps.pipcache.outputs.cache-hit != 'true' run: | pip install "ansible-core<2.19.0" -r .github/requirements-ci.txt --upgrade @@ -387,7 +388,8 @@ jobs: 3.13 cache: 'pip' - name: 'Install Python requirements' - if: steps.pipcache.outputs.cache-hit != 'true' + # throws error on using cache-hit condition + # if: steps.pipcache.outputs.cache-hit != 'true' run: | pip install "ansible-core<2.19.0" -r .github/requirements-ci.txt --upgrade - name: 'Run ansible-test integration test cases' @@ -479,7 +481,8 @@ jobs: python-version: ${{ matrix.python }} cache: 'pip' - name: 'Install tox' - if: steps.pipcache.outputs.cache-hit != 'true' + # throws error on using cache-hit condition + # if: steps.pipcache.outputs.cache-hit != 'true' run: | pip install tox tox-gh-actions --upgrade - name: "Run pytest via tox for ${{ matrix.python }}"