From c430645606396a300b57a4d9c909db959486ca4c Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Wed, 9 Oct 2024 16:48:33 +0530 Subject: [PATCH] ci: pin the ubuntu runner version in lint job. (#33755) Github has updated the `ubuntu-latest` label to use 24.04, but that breaks the lint job. Since the build job (github hosted and self hosted runners) still explicitly use 22.04, pin the same version for lint job until we upgrade all the workflows together. Signed-off-by: Mukilan Thiyagarajan --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f6474779f42..808989555df 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ env: jobs: lint: name: Lint - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 if: github.event_name != 'pull_request_target'