From 1a5e1eae2ba0690c01f950b78e12a64fd79c9a75 Mon Sep 17 00:00:00 2001 From: solomon Date: Sun, 21 Jan 2024 12:19:45 -0800 Subject: [PATCH] Drop GHC8 from CI and update GHC9 versions in CI. --- .github/workflows/cabal.yml | 2 +- flake.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cabal.yml b/.github/workflows/cabal.yml index 0ae350f..2ef3e62 100644 --- a/.github/workflows/cabal.yml +++ b/.github/workflows/cabal.yml @@ -34,7 +34,7 @@ jobs: strategy: matrix: cabal: ["3.6"] - ghc: ["8.10.7", "9.0.2", "9.2.4"] + ghc: ["9.0.2", "9.2.8", "9.4.8", "9.6.3"] env: CONFIG: "--project-file=cabal.project" diff --git a/flake.nix b/flake.nix index 9f499bc..16bb777 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,7 @@ outputs = { self, nixpkgs, flake-utils }: let - ghcVersion = "924"; + ghcVersion = "928"; compiler = "ghc${ghcVersion}"; # default systems compatible with pre-commit-hooks.nix # https://github.com/cachix/pre-commit-hooks.nix/pull/122