Skip to content

Commit

Permalink
chore(fossa): fix github actions workflow file for fossa (#323)
Browse files Browse the repository at this point in the history
Co-authored-by: netlibot <[email protected]>
  • Loading branch information
tools-netlify and netlify-bot authored Nov 5, 2020
1 parent d0955ae commit 15f184f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Dependency License Scanning

on:
push:
branches:
- master

defaults:
run:
shell: bash

jobs:
fossa:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fossa init
run: |-
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash
fossa init
- name: Set env
run: echo "line_number=$(grep -n "project" .fossa.yml | cut -f1 -d:)" >> $GITHUB_ENV
- name: Configuration
run: |-
sed -i "${line_number}s|.*| project: [email protected]:${GITHUB_REPOSITORY}.git|" .fossa.yml
cat .fossa.yml
- name: Upload dependencies
run: fossa analyze --debug
env:
FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}

0 comments on commit 15f184f

Please sign in to comment.