From cdc2cdc2a85c5447088577b31a1556b70631c0b7 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Tue, 4 Mar 2025 17:00:14 +0100 Subject: [PATCH] gha: validate-pr: update to ubuntu 24.04 Github is phasing out Ubuntu 20.04, and currently is doing brownouts; https://github.com/actions/runner-images/issues/11101 Signed-off-by: Sebastiaan van Stijn --- .github/workflows/validate-pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate-pr.yml b/.github/workflows/validate-pr.yml index 1b0a7f980f..815cbae0f8 100644 --- a/.github/workflows/validate-pr.yml +++ b/.github/workflows/validate-pr.yml @@ -15,7 +15,7 @@ on: jobs: check-area-label: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 timeout-minutes: 120 # guardrails timeout for the whole job steps: - name: Missing `area/` label @@ -27,7 +27,7 @@ jobs: run: exit 0 check-changelog: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 timeout-minutes: 120 # guardrails timeout for the whole job env: HAS_IMPACT_LABEL: ${{ contains(join(github.event.pull_request.labels.*.name, ','), 'impact/') }} @@ -65,7 +65,7 @@ jobs: echo "$desc" check-pr-branch: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 timeout-minutes: 120 # guardrails timeout for the whole job env: PR_TITLE: ${{ github.event.pull_request.title }}