From ce8cd09637c0fb594eb020a05893dd84d1ded858 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Thu, 30 May 2024 15:15:07 -0600 Subject: [PATCH] switch linting action to hlint-scan --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2279df..253383b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,10 +29,10 @@ jobs: lint: runs-on: ubuntu-latest + permissions: + security-events: write steps: - uses: actions/checkout@v4 - - uses: haskell/actions/hlint-setup@v2 - - uses: haskell/actions/hlint-run@v2 + - uses: haskell-actions/hlint-scan@v1 with: - fail-on: warning - path: '["src/", "tests/"]' + path: src tests