From c7075d78dd959cd665733db8e94677a44d9d8ebb Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 18 Sep 2022 12:04:39 +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 b988ac3..d81c3b8 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: "*.wps" 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 423702f..179d506 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