From 63f73e18f94cb70e759bab9ccce04fcf9f8c2178 Mon Sep 17 00:00:00 2001 From: Tomas Janousek Date: Mon, 2 Jan 2023 17:32:56 +0100 Subject: [PATCH] ci: Unpin runner in hlint workflow; bump hlint to 3.5 hlint 3.5 is built against libtinfo6 and works on Ubuntu 22.04 without needing to install libtinfo5. Fixes: e6329968ffe8 ("ci: Pin runner in hlint, nix workflows to ubuntu-20.04") --- .github/workflows/hlint.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/hlint.yaml b/.github/workflows/hlint.yaml index 5cbbe22..0ff72bd 100644 --- a/.github/workflows/hlint.yaml +++ b/.github/workflows/hlint.yaml @@ -6,14 +6,14 @@ on: jobs: hlint: - runs-on: ubuntu-20.04 # FIXME + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: 'Set up HLint' uses: haskell/actions/hlint-setup@v2 with: - version: '3.4.1' + version: '3.5' - name: 'Run HLint' uses: haskell/actions/hlint-run@v2