Merge pull request #207 from netlify/renovate/typescript-5.x-lockfile #132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependency License Scanning | |
on: | |
push: | |
branches: | |
- main | |
- chore/fossa-workflow | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
fossa: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Download fossa cli | |
run: |- | |
mkdir -p $HOME/.local/bin | |
curl https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash -s -- -b $HOME/.local/bin | |
echo "$HOME/.local/bin" >> $GITHUB_PATH | |
- name: Fossa init | |
run: fossa init | |
- name: Upload dependencies | |
run: fossa analyze --debug | |
env: | |
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }} |