Package version update (#719) #1412
This file contains hidden or 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: | |
| repository_dispatch: | |
| types: [fossa] | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| tags: | |
| - v* | |
| pull_request: | |
| branches: | |
| - main | |
| - release-* | |
| workflow_dispatch: {} | |
| jobs: | |
| fossa-scan: | |
| if: github.repository_owner == 'dapr' # FOSSA is not intended to run on forks. | |
| runs-on: ubuntu-latest | |
| env: | |
| FOSSA_API_KEY: b88e1f4287c3108c8751bf106fb46db6 # This is a PUSH ONLY token that is safe to be shared with the public | |
| steps: | |
| - name: "Checkout code" | |
| uses: actions/checkout@v4 | |
| - name: "Run FOSSA Scan" | |
| uses: fossas/fossa-action@c0a7d013f84c8ee5e910593186598625513cc1e4 # v1.6.0 | |
| with: | |
| api-key: ${{ env.FOSSA_API_KEY }} | |
| - name: "Run FOSSA Test" | |
| uses: fossas/fossa-action@c0a7d013f84c8ee5e910593186598625513cc1e4 # v1.6.0 | |
| with: | |
| api-key: ${{ env.FOSSA_API_KEY }} | |
| run-tests: true |