From b0acaad5e21a6e96611db6f40b83eca76bb435b7 Mon Sep 17 00:00:00 2001 From: Preetham Gujjula Date: Mon, 9 Dec 2024 16:04:48 -0800 Subject: [PATCH] Update Ubuntu and actions/checkout in CI Update to Ubuntu-22.04, because old versions of Ubuntu can't use Node 20, causing the issue described here: https://github.com/actions/checkout/issues/1590 While we're at it, update actions/checkout to v4. --- .github/workflows/haskell-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index 6170815..b4978e6 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -19,11 +19,11 @@ on: jobs: linux: name: Haskell-CI - Linux - ${{ matrix.compiler }} - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest timeout-minutes: 60 container: - image: buildpack-deps:bionic + image: buildpack-deps:jammy continue-on-error: ${{ matrix.allow-failure }} strategy: matrix: @@ -148,7 +148,7 @@ jobs: chmod a+x $HOME/.cabal/bin/cabal-plan cabal-plan --version - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: source - name: initial cabal.project for sdist