diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 28796d4..79db96a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,10 +13,10 @@ jobs: strategy: fail-fast: false matrix: - ghc: ['8.10.6', '9.0.1'] + ghc: ['8.10.7', '9.0.1'] deb: ['stretch', 'buster'] include: - - ghc: '8.10.6' + - ghc: '8.10.7' ghc_minor: '8.10' - ghc: '9.0.1' ghc_minor: '9.0' diff --git a/8.10/buster/Dockerfile b/8.10/buster/Dockerfile index 2bb408b..31b6ea2 100644 --- a/8.10/buster/Dockerfile +++ b/8.10/buster/Dockerfile @@ -31,7 +31,7 @@ ARG STACK_VERSION=2.7.3 RUN ghcup install stack -i /usr/local/bin $STACK_VERSION # install GHC into /opt/ghc + remove profiling support -ARG GHC_VERSION=8.10.6 +ARG GHC_VERSION=8.10.7 RUN ghcup install ghc -i /opt/ghc $GHC_VERSION && \ find /opt/ghc/lib -name "*.p_hi" -type f -delete && \ find /opt/ghc/lib -name "*_p.a" -type f -delete diff --git a/8.10/stretch/Dockerfile b/8.10/stretch/Dockerfile index a3b64e6..f85f0ba 100644 --- a/8.10/stretch/Dockerfile +++ b/8.10/stretch/Dockerfile @@ -31,7 +31,7 @@ ARG STACK_VERSION=2.7.3 RUN ghcup install stack -i /usr/local/bin $STACK_VERSION # install GHC into /opt/ghc + remove profiling support -ARG GHC_VERSION=8.10.6 +ARG GHC_VERSION=8.10.7 RUN ghcup install ghc -i /opt/ghc $GHC_VERSION && \ find /opt/ghc/lib -name "*.p_hi" -type f -delete && \ find /opt/ghc/lib -name "*_p.a" -type f -delete