-
Notifications
You must be signed in to change notification settings - Fork 173
47 lines (39 loc) · 1.25 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
39
40
41
42
43
44
45
46
47
name: Dependency scan
on: [push]
jobs:
dependency-scan:
name: dependency-scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Debugging information
run: |
ghc --version || echo "no ghc"
cabal --version || echo "no cabal"
ghcup --version || echo "no ghcup"
- name: Update cabal cache for spectrometer run
run: |
cabal update
- name: Install spectrometer from github
run: |
./install-latest.sh -d
- name: Use Spectrometer's GHC and Cabal
# 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.0.2
ghcup set ghc 9.0.2
ghcup install cabal 3.6.2.0
ghcup set cabal 3.6.2.0
cabal update
- name: Run dependency scan on Spectrometer
env:
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
run: |
fossa analyze --only-target cabal --only-target cargo
- name: Check for scan results
env:
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
run: |
fossa test