From ff53d24fca00b8a29a437bbb60e18aab4add3806 Mon Sep 17 00:00:00 2001 From: Ali Abrar Date: Thu, 25 Jan 2024 15:03:37 -0500 Subject: [PATCH 1/2] Update haskell.yml --- .github/workflows/haskell.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 0bf857c..d3e5a1f 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -6,14 +6,8 @@ jobs: build: strategy: matrix: - ghc: ['8.0.2', '8.2.2', '8.4.4', '8.6.5', '8.8.4', '8.10.2'] + ghc: ['8.6.5', '8.10.7'] os: ['ubuntu-latest', 'macos-latest'] - exclude: - # There are some linker warnings in 802 on darwin that - # cause compilation to fail - # See https://github.com/NixOS/nixpkgs/issues/25139 - - ghc: '8.0.2' - os: 'macos-latest' runs-on: ${{ matrix.os }} name: GHC ${{ matrix.ghc }} on ${{ matrix.os }} From 58d2e9ab398333cdf6880718b843143ae54e65ac Mon Sep 17 00:00:00 2001 From: Ali Abrar Date: Thu, 25 Jan 2024 15:05:09 -0500 Subject: [PATCH 2/2] Update haskell.yml --- .github/workflows/haskell.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index d3e5a1f..27e0224 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -12,8 +12,8 @@ jobs: name: GHC ${{ matrix.ghc }} on ${{ matrix.os }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-haskell@v1 + - uses: actions/checkout@v3 + - uses: haskell/actions/setup@v2 with: ghc-version: ${{ matrix.ghc }} - name: Cache