.github: Upgrade GitHub bot to Ubuntu 22.04 and gcc-11

Using "runs-on: ubuntu-latest" gives us Ubuntu 20.04. The latest Ubuntu
version today is 22.04. Not sure why "latest" here doesn't give us the
latest version of Ubuntu.

Specify 22.04 version explicitly to get Ubuntu 22.04 for GitHub bot.
This also upgrades gcc version from gcc-9 to gcc-11.

Signed-off-by: Ammar Faizi <ammarfaizi2@gnuweeb.org>
This commit is contained in:
Ammar Faizi
2022-07-11 18:41:21 +07:00
parent f8cd687ba8
commit b350259bd2
+1 -1
View File
@@ -7,7 +7,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false