.github/workflows/build.yml: explicitly select ubuntu-20.04

According to https://github.com/actions/virtual-environments
"ubuntu-latest" maps to "ubuntu-20.04", even though "ubuntu-22.04" is
also available.  Since our job description is very specific to
"ubuntu-20.04", let's select this explicitly.
This commit is contained in:
Max Kellermann 2022-07-13 12:36:14 +02:00
parent ae4f4d3533
commit d29e1544bf
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ on:
jobs:
build-linux:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
env:
CC: 'ccache gcc-10'
CXX: 'ccache g++-10'