From 88db715c3d93b15341b055469f6d470de9273616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20K=C3=A4llberg?= Date: Mon, 11 Sep 2023 13:03:05 +0200 Subject: [PATCH] Fix ghc-7.10.3 build in gh-actions ghc-7.10.3 is not supported in the latest builder, so we need an older version of ubuntu for it to work --- .github/workflows/build-all-versions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-all-versions.yml b/.github/workflows/build-all-versions.yml index d7cac5ce4..eea778daa 100644 --- a/.github/workflows/build-all-versions.yml +++ b/.github/workflows/build-all-versions.yml @@ -62,7 +62,7 @@ jobs: stack: name: stack / ghc ${{ matrix.ghc }} - runs-on: ubuntu-latest + runs-on: ${{ matrix.ghc == '7.10.3' && 'ubuntu-2004' || 'ubuntu-latest' }} strategy: matrix: stack: ["latest"]