From 79db755d046f65342214046e3be5768be2547f48 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 4 Sep 2022 18:30:10 +0200 Subject: [PATCH] Use ubuntu-22.04 for the CI --- .github/workflows/ci.yml | 6 +++--- .github/workflows/pr.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a436f49..e743748 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,14 +7,14 @@ on: jobs: clang-format: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - name: clang-format run: | docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src build-binary: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 needs: clang-format steps: - uses: actions/checkout@v2 @@ -28,7 +28,7 @@ jobs: path: "payload.elf" deploy-binary: needs: build-binary - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Get environment variables id: get_repository_name diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 31191bf..f174def 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -4,14 +4,14 @@ on: [pull_request] jobs: clang-format: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - name: clang-format run: | docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src build-binary: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 needs: clang-format steps: - uses: actions/checkout@v2