diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index c2a6f63..a65f2fe 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -23,7 +23,7 @@ jobs: timeout-minutes: 60 container: - image: buildpack-deps:bionic + image: buildpack-deps:focal continue-on-error: ${{ matrix.allow-failure }} strategy: matrix: @@ -91,12 +91,12 @@ jobs: - compiler: ghc-7.8.4 compilerKind: ghc compilerVersion: 7.8.4 - setup-method: hvr-ppa + setup-method: ghcup allow-failure: false - compiler: ghc-7.6.3 compilerKind: ghc compilerVersion: 7.6.3 - setup-method: hvr-ppa + setup-method: ghcup allow-failure: false - compiler: ghc-7.4.2 compilerKind: ghc @@ -217,7 +217,7 @@ jobs: chmod a+x $HOME/.cabal/bin/cabal-plan cabal-plan --version - name: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: source - name: initial cabal.project for sdist @@ -253,7 +253,7 @@ jobs: $CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all cabal-plan - name: restore cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }} path: ~/.cabal/store @@ -280,7 +280,7 @@ jobs: rm -f cabal.project.local $CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all - name: save cache - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 if: always() with: key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}