From b9f4f3c0b66ccacfdd478617b8bbd5835d165c95 Mon Sep 17 00:00:00 2001 From: Raymond Zhao <7199958+rzhao271@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:04:10 -0800 Subject: [PATCH 1/2] chore: remove needsTools param --- build/azure-pipeline.stable.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/build/azure-pipeline.stable.yml b/build/azure-pipeline.stable.yml index d1d858b1f196..eca6e23c0ed2 100644 --- a/build/azure-pipeline.stable.yml +++ b/build/azure-pipeline.stable.yml @@ -25,7 +25,6 @@ extends: parameters: publishExtension: ${{ parameters.publishExtension }} l10nSourcePaths: ./src/client - needsTools: true buildPlatforms: - name: Linux From 782df5a9c05e0a56b2f2a0caf53a474ddd76ccbf Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Mon, 25 Nov 2024 22:57:42 +0530 Subject: [PATCH 2/2] Pin ruff to specific version (#24484) --- .github/actions/lint/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/lint/action.yml b/.github/actions/lint/action.yml index 444f331a3a96..60d396e353f3 100644 --- a/.github/actions/lint/action.yml +++ b/.github/actions/lint/action.yml @@ -43,7 +43,7 @@ runs: - name: Run Ruff run: | - python -m pip install -U ruff + python -m pip install -U "ruff<0.8.0" python -m ruff check . python -m ruff format --check working-directory: python_files