Dependency Scanning #25
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 Scanning | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' # At 00:00 on Sunday | |
permissions: | |
contents: read # allow actions/checkout | |
jobs: | |
fossa: | |
name: Fossa | |
runs-on: ubuntu-22.04 | |
if: github.event.repository.fork == false | |
steps: | |
- name: Checkout | |
# https://github.com/actions/checkout/releases | |
# v3.5.0 | |
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 | |
- name: Cache Coursier cache | |
# https://github.com/coursier/cache-action/releases | |
# v6.4.3 | |
uses: coursier/cache-action@566e01fea33492e5a89706b43fb0d3fc884154f9 | |
- name: Set up JDK 17 | |
# https://github.com/coursier/setup-action/releases | |
# v1.3.0 | |
uses: coursier/setup-action@70323223454ac2a9eb2de46f389b4d045cbcdea5 | |
with: | |
jvm: temurin:1.17 | |
- name: FOSSA policy check | |
run: |- | |
curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install-latest.sh | bash | |
sbt "compile; makePom" | |
fossa list-targets | |
fossa analyze -p kalix-javascript-sdk | |
env: | |
FOSSA_API_KEY: "${{secrets.FOSSA_API_KEY}}" |