1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-14 11:57:59 +00:00
external-secrets/.github/workflows/dlc.yml
Moritz Johner e4f93a2f2b
feat: add fossa check (#1819)
Signed-off-by: Moritz Johner <beller.moritz@googlemail.com>

Signed-off-by: Moritz Johner <beller.moritz@googlemail.com>
2022-12-16 21:53:04 +01:00

25 lines
516 B
YAML

name: Dependency License Checks
on:
pull_request:
paths:
- "go.mod"
workflow_dispatch: {}
jobs:
fossa-scan:
runs-on: ubuntu-latest
steps:
- name: "Checkout Code"
uses: actions/checkout@v3
- name: "Run FOSSA Scan"
uses: fossas/fossa-action@main
with:
api-key: ${{secrets.FOSSA_API_KEY}}
- name: "Run FOSSA Test"
uses: fossas/fossa-action@main
with:
api-key: ${{secrets.FOSSA_API_KEY}}
run-tests: true