fix(api): validate execution and bucket query filters #68
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: Security Scanner | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| pull_request: | |
| branches: [ "**" ] | |
| jobs: | |
| gosec: | |
| name: Gosec Security Scanner | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 | |
| - name: Set up Go | |
| uses: actions/setup-go@19bb51245e9c80abacb2e91cc42b33fa478b8639 | |
| with: | |
| go-version: '1.26.1' | |
| - name: Install gosec | |
| run: go install github.com/securego/gosec/v2/cmd/gosec@v2.25.0 | |
| - name: Run gosec | |
| run: gosec ./... |