[pull] main from external-secrets:main #1038
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 License Checks | |
on: | |
pull_request: | |
paths: | |
- "go.mod" | |
workflow_dispatch: {} | |
permissions: | |
contents: read | |
jobs: | |
fossa-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Code" | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: "Run FOSSA Scan" | |
uses: fossas/fossa-action@09bcf127dc0ccb4b5a023f6f906728878e8610ba # main | |
with: | |
api-key: ${{secrets.FOSSA_API_KEY}} | |
- name: "Run FOSSA Test" | |
uses: fossas/fossa-action@09bcf127dc0ccb4b5a023f6f906728878e8610ba # main | |
with: | |
api-key: ${{secrets.FOSSA_API_KEY}} | |
run-tests: true |