From 21924dbce308ff8c1ff0aceefdee158622b5f046 Mon Sep 17 00:00:00 2001 From: Peter Becich Date: Mon, 14 Jun 2021 18:02:28 -0700 Subject: [PATCH 1/2] update Github Actions uses https://github.com/haskell/actions/tree/main/setup --- .github/workflows/haskell.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 731fd0bd..8205302a 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -10,12 +10,13 @@ jobs: build: runs-on: ${{ matrix.os }} + timeout-minutes: 10 strategy: fail-fast: false matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10'] + ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10.4', '8.10.5'] exclude: - os: windows-latest ghc: "8.0" @@ -40,10 +41,10 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/setup-haskell@v1.1.3 + - uses: haskell/actions/setup@v1 with: ghc-version: ${{ matrix.ghc }} - cabal-version: '3.2' + cabal-version: '3.4' - name: Cache uses: actions/cache@v1 From cf40780cefd38e5355d3d4c2888722646d8da498 Mon Sep 17 00:00:00 2001 From: Peter Becich Date: Thu, 17 Jun 2021 00:50:27 -0700 Subject: [PATCH 2/2] remove GHC 8.10.5 from CI --- .github/workflows/haskell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 8205302a..adf697dd 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10.4', '8.10.5'] + ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10.4'] exclude: - os: windows-latest ghc: "8.0"