Merge pull request #6449 from liuzhen21/fix/configupdatejob-runner-re… #1
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: | |
| push: | |
| branches: [master] | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| - '**/OWNERS' | |
| - '**/MAINTAINERS' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - 'docs/**' | |
| - '**/OWNERS' | |
| - '**/MAINTAINERS' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version: "^1.22.x" | |
| - run: go version | |
| # Runs a set of commands to initialize and analyze with FOSSA | |
| - name: run FOSSA analysis | |
| uses: fossas/fossa-action@main | |
| with: | |
| # FOSSA Push-Only API Token | |
| api-key: '87a9c35cbed49f802657f98b60134ee8' |