From 7ded8a116e29887abdb39eb2afb73d8ffebfa4ba Mon Sep 17 00:00:00 2001 From: Matthias Fischmann Date: Fri, 26 Feb 2021 14:53:11 +0100 Subject: [PATCH] Update haskell-ci dep, ghc versions. --- .github/workflows/ci.dhall | 5 +++-- .github/workflows/ci.yaml | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.dhall b/.github/workflows/ci.dhall index 37bdb1c..169604f 100644 --- a/.github/workflows/ci.dhall +++ b/.github/workflows/ci.dhall @@ -4,8 +4,9 @@ in haskellCi.generalCi haskellCi.matrixSteps ( Some { ghc = - [ haskellCi.GHC.GHC8101 - , haskellCi.GHC.GHC883 + [ haskellCi.GHC.GHC8104 + , haskellCi.GHC.GHC901 + , haskellCi.GHC.GHC884 , haskellCi.GHC.GHC865 ] , cabal = [ haskellCi.Cabal.Cabal32 ] diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1b714a1..7146799 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,7 +4,7 @@ jobs: steps: - uses: "actions/checkout@v1" - id: setup-haskell-cabal - uses: "actions/setup-haskell@v1.1.4" + uses: "haskell/actions/setup@v1.2" with: cabal-version: "${{ matrix.cabal }}" enable-stack: false @@ -28,8 +28,9 @@ jobs: cabal: - '3.2' ghc: - - '8.10.1' - - '8.8.3' + - '8.10.4' + - '9.0.1' + - '8.8.4' - '8.6.5' name: Haskell CI on: