From 3fa1b1b28bdb8fefcdb8f0baeda7efeb387922f0 Mon Sep 17 00:00:00 2001 From: netlibot <33071329+netlify-bot@users.noreply.github.com> Date: Wed, 27 May 2020 01:24:43 -0700 Subject: [PATCH] chore(ci): create github actions workflow files for fossa (#3818) --- .github/workflows/fossa.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/fossa.yml diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml new file mode 100644 index 00000000..7993f595 --- /dev/null +++ b/.github/workflows/fossa.yml @@ -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 ::set-env name=line_number::$(grep -n "project" .fossa.yml | cut -f1 -d:) + - name: Configuration + run: |- + sed -i "${line_number}s|.*| project: git@github.com:${GITHUB_REPOSITORY}.git|" .fossa.yml + cat .fossa.yml + - name: Upload dependencies + run: fossa analyze --debug + env: + FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}