mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
e4f93a2f2b
Signed-off-by: Moritz Johner <beller.moritz@googlemail.com> Signed-off-by: Moritz Johner <beller.moritz@googlemail.com>
25 lines
516 B
YAML
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
|