Refactor Dependabot on-demand workflow to use a trigger job and inclu… #358
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
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| pull_request: | |
| name: Security | |
| jobs: | |
| Gosec: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Fetch Repository | |
| uses: actions/checkout@v6 | |
| - name: Run Gosec | |
| uses: securego/gosec@master | |
| with: | |
| args: ./... |