From 97b197769c5c43f58c3865d16b6972d97c7b7bc7 Mon Sep 17 00:00:00 2001 From: David Stuttard Date: Tue, 6 May 2025 11:25:10 +0100 Subject: [PATCH] Update checks to use later version of Ubuntu --- .github/workflows/check-formatting.yml | 2 +- .github/workflows/check-typos.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-formatting.yml b/.github/workflows/check-formatting.yml index 4ee8b74..6bf0588 100644 --- a/.github/workflows/check-formatting.yml +++ b/.github/workflows/check-formatting.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: clang-format-check: name: clang-format - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-22.04" steps: - name: Setup environment run: | diff --git a/.github/workflows/check-typos.yml b/.github/workflows/check-typos.yml index 15221f4..d194688 100644 --- a/.github/workflows/check-typos.yml +++ b/.github/workflows/check-typos.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: run: name: typos - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-22.04" steps: - name: Checkout Repository uses: actions/checkout@v2