From 313bf6655034b85e3b239740ded4d4246de15652 Mon Sep 17 00:00:00 2001 From: Magnus Viernickel Date: Mon, 6 May 2024 13:18:13 +0200 Subject: [PATCH] [chore] update workflow --- .github/workflows/haskell-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index 677992c..537830a 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -50,6 +50,12 @@ jobs: path: ${{ steps.setup-haskell.outputs.cabal-store }} key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }} restore-keys: ${{ runner.os }}-${{ matrix.ghc }}- + - name: install packages from security-advisories + run: | + cabal install git://github.com/haskell/security-advisories.git#main:osv + cabal install git://github.com/haskell/security-advisories.git#main:cvss + cabal install git://github.com/haskell/security-advisories.git#main:hsec-core + cabal install git://github.com/haskell/security-advisories.git#main:hsec-tools - name: Build run: cabal build - name: Test