From 84bcf31d4587a857df3de6c7326bb36f5925aed6 Mon Sep 17 00:00:00 2001 From: Enno Cramer Date: Fri, 11 Aug 2023 23:01:16 +0200 Subject: [PATCH] Avoid specifying GHC patch version in CI workflow --- .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 3622891..bc2e787 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,10 +18,10 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, macOS-latest ] - ghc: [ 8.4.4, 8.6.5, 8.8.4, 8.10.7, 9.0.2, 9.2.8, 9.4.6, 9.6.2 ] + ghc: [ '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6' ] exclude: - os: macOS-latest - ghc: 8.4.4 + ghc: '8.4' runs-on: ${{ matrix.os }}