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: b7afb0c0bc3f ("ci: Pin runner in hlint, nix workflows to ubuntu-20.04")
This commit is contained in:
Tomas Janousek 2023-01-02 17:32:56 +01:00
parent 6b20dbca42
commit e2ffa533da

View File

@ -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