From 57ff5b12594ca85c82938363f61f85f19cadd198 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 26 Aug 2022 11:22:41 +0200 Subject: [PATCH] Use ubuntu-22.04 for 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 b6d49d3..b2f5bb0 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 ./source 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: "*.rpx" 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 7464b72..794b382 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 ./source build-binary: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 needs: clang-format steps: - uses: actions/checkout@v2