Use ubuntu-22.04 for the CI

This commit is contained in:
Maschell 2023-01-11 11:16:10 +01:00
parent 2ff9a1f2f2
commit 8417090b79
2 changed files with 5 additions and 5 deletions

View File

@ -7,14 +7,14 @@ on:
jobs:
clang-format:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: clang-format
run: |
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src
build-binary:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: clang-format
steps:
- uses: actions/checkout@v3
@ -28,7 +28,7 @@ jobs:
path: "*.wps"
deploy-binary:
needs: build-binary
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Get environment variables
id: get_repository_name

View File

@ -4,14 +4,14 @@ on: [pull_request]
jobs:
clang-format:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: clang-format
run: |
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./src
build-binary:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: clang-format
steps:
- uses: actions/checkout@v3