[v2.10] k8s October 2024 patches (#1530) #106
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: Fossa Scan | |
on: | |
push: | |
branches: | |
- 'dev-v*' | |
- 'release-v*' | |
jobs: | |
fossa: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Read FOSSA token | |
uses: rancher-eio/read-vault-secrets@main | |
with: | |
secrets: | | |
secret/data/github/org/rancher/fossa/push token | FOSSA_API_KEY_PUSH_ONLY | |
- name: FOSSA scan | |
uses: fossas/fossa-action@main | |
with: | |
api-key: ${{ env.FOSSA_API_KEY_PUSH_ONLY }} | |
run-tests: false |