Skip to content

really for real go static analysis #5050

really for real go static analysis

really for real go static analysis #5050

Workflow file for this run

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