From fec6ccaa0dc879d696786d2eb5f323f7df3a39ac Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 4 Apr 2022 09:12:36 -0700 Subject: [PATCH] CI: ensure we're using the right version of cabal. (Add `--set` to `ghcup install`.) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3089135bd..e09425f4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,7 +78,7 @@ jobs: - name: Install cabal/ghc run: | ghcup install ghc --set ${{ matrix.versions.ghc }} - ghcup install cabal ${{ matrix.versions.cabal }} + ghcup install cabal --set ${{ matrix.versions.cabal }} # declare/restore cached things # caching doesn't work for scheduled runs yet