From 4ecaee8deb5b697bceae478a3dbc37d10c894102 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 4 Sep 2022 18:02:56 +0200 Subject: [PATCH] Use ubuntu-22.04 in 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 a83349c..80e85c3 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: "*.wms" 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 19c3b14..7adc79d 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