diff --git a/.github/workflows/sync-with-upstream.yml b/.github/workflows/sync-with-upstream.yml index 9e747de396edc..53751552f4d2e 100644 --- a/.github/workflows/sync-with-upstream.yml +++ b/.github/workflows/sync-with-upstream.yml @@ -77,14 +77,6 @@ jobs: exit 0 fi - echo "Checking if PR is up-to-date" - - git fetch ${upstream_url} refs/pull/${pr_number}/head - if git diff --stat --exit-code upstream/main FETCH_HEAD; then - echo "PR is up-to-date" - exit 0 - fi - echo "Updating PR \#${pr_number}" gh pr edit \ $pr_number \ diff --git a/Dockerfile.ubi b/Dockerfile.ubi index 20bb7e7e2cb5e..822363161be2b 100644 --- a/Dockerfile.ubi +++ b/Dockerfile.ubi @@ -189,7 +189,7 @@ FROM vllm-openai as vllm-grpc-adapter USER root RUN --mount=type=cache,target=/root/.cache/pip \ - pip install vllm-tgis-adapter==0.1.2 + pip install vllm-tgis-adapter==0.1.3 ENV GRPC_PORT=8033 USER 2000