From f9dbdce292c8f8f02acaeb4b8a2d6276147e25dd Mon Sep 17 00:00:00 2001 From: Ihor Dvoretskyi Date: Wed, 14 Apr 2021 13:31:19 +0300 Subject: [PATCH] FOSSA scan enabled Ref.: https://github.com/cncf/foundation/issues/109 Signed-off-by: Ihor Dvoretskyi --- .github/workflows/fossa.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 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 0000000000..bfe0a7ff1f --- /dev/null +++ b/.github/workflows/fossa.yml @@ -0,0 +1,27 @@ +name: FOSSA +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + with: + go-version: "^1.14.x" + - run: go version + # Runs a set of commands to initialize and analyze with FOSSA + - name: run FOSSA analysis + env: + # FOSSA Push-Only API Token + FOSSA_API_KEY: '044cfa03c61e6271a24349184e90b381' + run: | + export GOPATH=$HOME/go + export PATH=$PATH:$(go env GOPATH)/bin + curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | bash + fossa init + fossa analyze