Skip to content

Commit 9477b2a

Browse files
committed
Bump CI to GHC 9.10.2
1 parent d18697c commit 9477b2a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/actions/setup-build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
sudo chown -R $USER /usr/local/.ghcup
3232
shell: bash
3333

34-
- uses: haskell-actions/setup@v2.7.10
34+
- uses: haskell-actions/setup@v2.8.1
3535
id: HaskEnvSetup
3636
with:
3737
ghc-version : ${{ inputs.ghc }}

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
example: ['cabal', 'lsp-types']
128128

129129
steps:
130-
- uses: haskell-actions/[email protected].0
130+
- uses: haskell-actions/[email protected].1
131131
with:
132132
ghc-version : ${{ matrix.ghc }}
133133
cabal-version: ${{ matrix.cabal }}

haskell-language-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ copyright: The Haskell IDE Team
1414
license: Apache-2.0
1515
license-file: LICENSE
1616
build-type: Simple
17-
tested-with: GHC == {9.12.2, 9.10.1, 9.8.4, 9.6.7}
17+
tested-with: GHC == {9.12.2, 9.10.2, 9.8.4, 9.6.7}
1818
extra-source-files:
1919
README.md
2020
ChangeLog.md

plugins/hls-refactor-plugin/test/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3379,7 +3379,7 @@ addSigActionTests = let
33793379
executeCodeAction chosenAction
33803380
modifiedCode <- documentContents doc
33813381
liftIO $ expectedCode @=? modifiedCode
3382-
issue806 = if ghcVersion >= GHC912 then
3382+
issue806 = if ghcVersion >= GHC910 then
33833383
"hello = print" >:: "hello :: GHC.Types.ZonkAny 0 -> IO ()" -- GHC now returns ZonkAny 0 instead of Any. https://gitlab.haskell.org/ghc/ghc/-/issues/25895
33843384
else
33853385
"hello = print" >:: "hello :: GHC.Types.Any -> IO ()" -- Documents current behavior outlined in #806

0 commit comments

Comments
 (0)