Skip to content

Commit d372334

Browse files
committed
ci(github-actions): update GHC and Cabal versions in workflows
- Update GHC versions to include 9.8 and 9.4 in build and test workflows - Update Cabal version to 3.10 in build and test workflows - Add ~hoauth2-demo/src~ path to HLint run in lint workflow
1 parent ae82164 commit d372334

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
ghc: ["9.8", "9.6", "9.4", "9.2"]
15-
cabal: ["3.8"]
15+
cabal: ["3.10"]
1616
name: Build hoauth2 on GHC ${{ matrix.ghc }}
1717

1818
steps:

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: "Set up HLint"
1717
uses: haskell-actions/hlint-setup@v2
1818
with:
19-
version: '3.5'
19+
version: "3.5"
2020

2121
- name: "Run HLint"
2222
uses: haskell-actions/hlint-run@v2
2323
with:
24-
path: '["hoauth2/src/", "hoauth2-tutorial/src", "hoauth2-providers/src", "hoauth2-providers-tutorial/src"]'
24+
path: '["hoauth2/src/", "hoauth2-tutorial/src", "hoauth2-providers/src", "hoauth2-providers-tutorial/src", "hoauth2-demo/src"]'
2525
fail-on: warning

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
ghc: ["9.6.1", "9.2.7", "8.10.7"]
20-
cabal: ["3.8"]
19+
ghc: ["9.8", "9.6", "9.4", "9.2"]
20+
cabal: ["3.10"]
2121
name: Test hoauth2 on GHC ${{ matrix.ghc }}
2222

2323
steps:

0 commit comments

Comments
 (0)