-
Notifications
You must be signed in to change notification settings - Fork 175
38 lines (31 loc) · 1.04 KB
/
dependency-scan.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Dependency scan
on: [push]
jobs:
dependency-scan:
name: dependency-scan
runs-on: ubuntu-latest
env:
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
steps:
- uses: actions/checkout@v4
- name: Install and set GHC and Cabal versions
# The first line works around a ghcup issue:
# https://github.com/actions/runner-images/issues/7061#issuecomment-1422639889
run: |
sudo chown -R $USER /usr/local/.ghcup
ghcup install ghc 9.8.2
ghcup set ghc 9.8.2
ghcup install cabal 3.10.3.0
ghcup set cabal 3.10.3.0
cabal update
- name: Log debug information
run: |
ghc --version || echo "no ghc"
cabal --version || echo "no cabal"
ghcup --version || echo "no ghcup"
- name: Install latest release from github
run: ./install-latest.sh -d
- name: Run dependency scan
run: fossa analyze --only-target cabal --only-target cargo
- name: Check for scan results
run: fossa test