From d29e1544bf49782b7b22da5e3b1831cbc31724a5 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 13 Jul 2022 12:36:14 +0200 Subject: [PATCH] .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. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 10b76d015..ec6e86fdc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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'