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")
This commit is contained in:
Tomas Janousek 2023-01-02 17:32:56 +01:00
parent 57c3a13125
commit 63f73e18f9

View File

@ -6,14 +6,14 @@ on:
jobs: jobs:
hlint: hlint:
runs-on: ubuntu-20.04 # FIXME runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: 'Set up HLint' - name: 'Set up HLint'
uses: haskell/actions/hlint-setup@v2 uses: haskell/actions/hlint-setup@v2
with: with:
version: '3.4.1' version: '3.5'
- name: 'Run HLint' - name: 'Run HLint'
uses: haskell/actions/hlint-run@v2 uses: haskell/actions/hlint-run@v2