From f72d9c66d61a3c55e77dc35226c094d27f131faf Mon Sep 17 00:00:00 2001 From: Luke Lau Date: Sat, 13 Jun 2020 01:45:56 +0100 Subject: [PATCH] Update some actions Remove redundant cabal update, seems to be done automatically in setup-haskell --- .github/workflows/haskell.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 9822af7..eca0a18 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -16,12 +16,11 @@ jobs: ghc: '8.8.3' # fails due to segfault steps: - - uses: actions/checkout@v1 - - uses: actions/setup-haskell@v1.1 + - uses: actions/checkout@v2 + - uses: actions/setup-haskell@v1.1.1 with: ghc-version: ${{ matrix.ghc }} - cabal-version: '3.0' - - run: cabal update + cabal-version: '3.2' - name: Cache Cabal uses: actions/cache@v1.2.0 -- 2.30.2