diff --git a/infra/bots/README.recipes.md b/infra/bots/README.recipes.md index fe93787963a4..26486ddf7a02 100644 --- a/infra/bots/README.recipes.md +++ b/infra/bots/README.recipes.md @@ -591,10 +591,10 @@ PYTHON_VERSION_COMPATIBILITY: PY3 — **def [RunSteps](/infra/bots/recipe_modules/vars/examples/full.py#16)(api):** -[depot_tools/recipe_modules/bot_update]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/8168f76753ed3d622fc4b7b94bb1dbf7b8abdb95/recipes/README.recipes.md#recipe_modules-bot_update -[depot_tools/recipe_modules/gclient]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/8168f76753ed3d622fc4b7b94bb1dbf7b8abdb95/recipes/README.recipes.md#recipe_modules-gclient -[depot_tools/recipe_modules/git]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/8168f76753ed3d622fc4b7b94bb1dbf7b8abdb95/recipes/README.recipes.md#recipe_modules-git -[depot_tools/recipe_modules/tryserver]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/8168f76753ed3d622fc4b7b94bb1dbf7b8abdb95/recipes/README.recipes.md#recipe_modules-tryserver +[depot_tools/recipe_modules/bot_update]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/ea11cc31c5f3d65e7ec1a18971319b26e54a04e7/recipes/README.recipes.md#recipe_modules-bot_update +[depot_tools/recipe_modules/gclient]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/ea11cc31c5f3d65e7ec1a18971319b26e54a04e7/recipes/README.recipes.md#recipe_modules-gclient +[depot_tools/recipe_modules/git]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/ea11cc31c5f3d65e7ec1a18971319b26e54a04e7/recipes/README.recipes.md#recipe_modules-git +[depot_tools/recipe_modules/tryserver]: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/ea11cc31c5f3d65e7ec1a18971319b26e54a04e7/recipes/README.recipes.md#recipe_modules-tryserver [recipe_engine/recipe_modules/context]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/428eeaebf2e1de58ed1c7cae50daba3384d730cd/README.recipes.md#recipe_modules-context [recipe_engine/recipe_modules/file]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/428eeaebf2e1de58ed1c7cae50daba3384d730cd/README.recipes.md#recipe_modules-file [recipe_engine/recipe_modules/json]: https://chromium.googlesource.com/infra/luci/recipes-py.git/+/428eeaebf2e1de58ed1c7cae50daba3384d730cd/README.recipes.md#recipe_modules-json diff --git a/infra/bots/recipes.py b/infra/bots/recipes.py index 8250010a6ae8..81b0bc6edd2e 100755 --- a/infra/bots/recipes.py +++ b/infra/bots/recipes.py @@ -197,10 +197,9 @@ def checkout_engine(engine_path, repo_root, recipes_cfg_path): stdout=NUL, stderr=NUL) except subprocess.CalledProcessError: - _git_check_call(['fetch', url, branch], + _git_check_call(['fetch', '--quiet', url, branch], cwd=engine_path, - stdout=NUL, - stderr=NUL) + stdout=NUL) try: _git_check_call(['diff', '--quiet', revision], cwd=engine_path) diff --git a/infra/config/recipes.cfg b/infra/config/recipes.cfg index 574a6a133479..12f85edf3321 100644 --- a/infra/config/recipes.cfg +++ b/infra/config/recipes.cfg @@ -14,7 +14,7 @@ "deps": { "depot_tools": { "branch": "refs/heads/main", - "revision": "8168f76753ed3d622fc4b7b94bb1dbf7b8abdb95", + "revision": "ea11cc31c5f3d65e7ec1a18971319b26e54a04e7", "url": "https://chromium.googlesource.com/chromium/tools/depot_tools.git" }, "recipe_engine": {