File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,10 @@ jobs:
24
24
runs-on : ubuntu-18.04
25
25
# This job is not run in a container, any recent GHC should be fine
26
26
steps :
27
- - name : Set PATH
28
- # https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#adding-a-system-path
27
+ - name : Install GHC
29
28
run : |
30
29
echo "$HOME/.cabal/bin" >> $GITHUB_PATH
31
- echo "/opt/cabal/3.2/bin" >> $GITHUB_PATH
32
- echo "/opt/ghc/8.10.4/bin" >> $GITHUB_PATH
30
+ ghcup install ghc --set 8.10.4
33
31
- uses : actions/cache@v1
34
32
with :
35
33
path : ~/.cabal/store
Original file line number Diff line number Diff line change @@ -24,12 +24,10 @@ jobs:
24
24
runs-on : ubuntu-18.04
25
25
# This job is not run in a container, any recent GHC should be fine
26
26
steps :
27
- - name : Set PATH
28
- # https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#adding-a-system-path
27
+ - name : Install GHC
29
28
run : |
30
29
echo "$HOME/.cabal/bin" >> $GITHUB_PATH
31
- echo "/opt/cabal/3.2/bin" >> $GITHUB_PATH
32
- echo "/opt/ghc/8.10.4/bin" >> $GITHUB_PATH
30
+ ghcup install ghc --set 8.10.4
33
31
- uses : actions/cache@v1
34
32
with :
35
33
path : ~/.cabal/store
You can’t perform that action at this time.
0 commit comments