diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2022-04-24 22:52:03 -0700 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2022-04-24 22:52:03 -0700 |
| commit | 4c485fbf41ec57086ae43ca67bdf56fe95fa840f (patch) | |
| tree | 35753916a13235547b881a552c9ecb935c77836b /.github | |
| parent | 955cb1fbc94f61374fc2472b9f662f4b9aa2b643 (diff) | |
nightly: use ghcup instead of haskell/actions
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/nightly.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index c4a86127a..4b9701b02 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -14,11 +14,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Install recent cabal/ghc - uses: haskell/actions/setup@v2 - with: - ghc-version: '8.10.7' - cabal-version: '3.2' + - name: Install cabal/ghc + run: | + ghcup install ghc --set 8.10.7 + ghcup install cabal --set 3.2 - name: Install dependencies run: | |
