Skip to content

Commit 18cbee9

Browse files
authored
Merge pull request #170 from gelisam/support-ghc-9.8
Support ghc 9.8
2 parents 493d01f + 94f6d32 commit 18cbee9

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
.stack-work
4444
key: ${{ runner.os }}-stack-${{ hashFiles(matrix.stack_yaml) }}
4545

46-
- uses: haskell/actions/setup@v2
46+
- uses: haskell-actions/setup@v2
4747
id: setup-haskell-stack
4848
name: Setup Stack
4949
with:
@@ -71,13 +71,13 @@ jobs:
7171
strategy:
7272
matrix:
7373
include:
74-
- ghc: latest
74+
- ghc-version: '9.8.1'
7575
os: ubuntu-latest
7676

7777
steps:
7878
- uses: actions/checkout@v2
7979

80-
- uses: haskell/actions/setup@v1
80+
- uses: haskell-actions/setup@v2
8181
id: setup-haskell-cabal
8282
name: Setup Cabal
8383
with:

hint.cabal

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ tested-with: ghc == 8.10.7
2323
, ghc == 9.2.7
2424
, ghc == 9.4.5
2525
, ghc == 9.6.1
26+
, ghc == 9.8.1
2627

2728
cabal-version: >= 1.10
2829
build-type: Simple
@@ -71,7 +72,7 @@ library
7172
default-language: Haskell2010
7273
build-depends: base == 4.*,
7374
containers,
74-
ghc >= 8.4 && < 9.7,
75+
ghc >= 8.4 && < 9.9,
7576
ghc-paths,
7677
ghc-boot,
7778
transformers,

0 commit comments

Comments
 (0)