Use ubuntu-22.04 for CI

This commit is contained in:
Maschell 2022-09-05 12:38:26 +02:00
parent df5990044c
commit 86196c6bb1
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ jobs:
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
@ -35,7 +35,7 @@ jobs:
path: "*.wuhb"
deploy-binary:
needs: build-binary
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Get environment variables
id: get_repository_name

View File

@ -29,7 +29,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