From daf8c8511a994991d5b0b2a4c449bb82a97bbb47 Mon Sep 17 00:00:00 2001 From: Maschell Date: Mon, 29 Aug 2022 01:02:59 +0200 Subject: [PATCH] Use ubuntu-22.04 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/pr.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08e214a..f15be79 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 0e909ff..27cbe8c 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 check-build-with-logging: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 needs: clang-format steps: - uses: actions/checkout@v2 @@ -22,7 +22,7 @@ jobs: docker run --rm -v ${PWD}:/project builder make clean docker run --rm -v ${PWD}:/project builder make DEBUG=1 build-binary: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 needs: clang-format steps: - uses: actions/checkout@v2