From e77ebbccd01ac60e610772cc7989c4a3b66f7d24 Mon Sep 17 00:00:00 2001 From: Andreas Abel Date: Fri, 22 Mar 2024 07:54:26 +0100 Subject: [PATCH] CI: use latest autoconf from bare ubuntu-latest runner The container `ubuntu:22.10` does not seem to work anymore. Also, why pin a version of `autoconf`? Shouldn't we test with the native `autoconf` shipped with the OS? --- .github/workflows/haskell.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index f01c3d9c..a6f816af 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -6,13 +6,13 @@ on: pull_request: branches: [ 'master' ] -env: - autoconf_ver: 2.69 +# env: +# autoconf_ver: 2.69 jobs: autoconf: runs-on: ubuntu-latest - container: ubuntu:22.10 + # container: ubuntu:22.10 steps: - uses: actions/checkout@v4