From 3f21afe3425624ce8c932714fcdc4fb9e293d329 Mon Sep 17 00:00:00 2001 From: martoon Date: Tue, 20 Feb 2024 05:56:42 +0400 Subject: [PATCH] [Chore] Update GHC version used in CI Problem: CI job for Windows compiles against specific GHC version. Solution: update it to match LTS version. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e89de660..40ada0a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,9 +44,9 @@ jobs: strategy: matrix: stack: ["2.7.5"] - ghc: ["9.0.2"] + ghc: ["9.4.7"] include: - - ghc: "9.0.2" + - ghc: "9.4.7" stackyaml: stack.yaml steps: - uses: actions/checkout@v4