Configure Renovate #519
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: 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.16.x" | |
- name: Add GOPATH to GITHUB_ENV | |
run: echo "GOPATH=$(go env GOPATH)" >>"$GITHUB_ENV" | |
- name: Add GOPATH to GITHUB_PATH | |
run: echo "$GOPATH/bin" >>"$GITHUB_PATH" | |
- name: Run FOSSA scan and upload build data | |
uses: fossa-contrib/fossa-action@v1 | |
with: | |
# FOSSA Push-Only API Token | |
fossa-api-key: 5ee8bf422db1471e0bcf2bcb289185de | |
github-token: ${{ github.token }} |