From 46fb83ea733275168dd0737668a120ea92b5fbdd Mon Sep 17 00:00:00 2001 From: Matt Leon Date: Tue, 4 Mar 2025 13:08:22 -0500 Subject: [PATCH] chore: Update workflow runners to ubuntu-24.04 ubuntu-20.04 runners are deprecated and will stop working entirely 2025-04-01. Signed-off-by: Matt Leon --- .github/workflows/format.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index de71b24c..0cec216e 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -41,7 +41,7 @@ jobs: addlicense: name: verify licenses - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v2 @@ -61,7 +61,7 @@ jobs: buildifier: name: check format with buildifier - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v2 @@ -81,7 +81,7 @@ jobs: rules_rust: name: check format with rules_rust - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v2 @@ -99,7 +99,7 @@ jobs: clang_format: name: check format with clang-format - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v2 @@ -115,7 +115,7 @@ jobs: clang_tidy: name: check format with clang-tidy - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v2