diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index 09a07fc91fb87..03fca283e5ca1 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -237,6 +237,11 @@ ${{ hashFiles('.pre-commit-config.yaml') }}" DOCKER_CACHE: ${{ needs.build-info.outputs.cache-directive }} IMAGE_TAG: ${{ env.IMAGE_TAG_FOR_THE_BUILD }} PYTHON_VERSIONS: ${{ needs.build-info.outputs.all-python-versions-list-as-string }} + - name: "Show dependencies to be upgraded" + run: > + breeze release-management generate-constraints + --airflow-constraints-mode constraints-source-providers + if: needs.build-info.outputs.upgrade-to-newer-dependencies != 'false' - name: Push empty CI image ${{ env.PYTHON_MAJOR_MINOR_VERSION }}:${{ env.IMAGE_TAG_FOR_THE_BUILD }} if: failure() || cancelled() run: breeze ci-image build --push --empty-image --run-in-parallel diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be14a568d4c06..f7ea042755384 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -409,6 +409,11 @@ ${{ hashFiles('.pre-commit-config.yaml') }}" PYTHON_VERSIONS: ${{ needs.build-info.outputs.all-python-versions-list-as-string }} DEBUG_RESOURCES: ${{ needs.build-info.outputs.debug-resources }} if: needs.build-info.outputs.in-workflow-build == 'true' + - name: "Show dependencies to be upgraded" + run: > + breeze release-management generate-constraints + --airflow-constraints-mode constraints-source-providers + if: needs.build-info.outputs.upgrade-to-newer-dependencies != 'false' - name: "Candidates for pip resolver backtrack triggers" if: failure() || cancelled() run: >