[feat] Resubmit the operator module #109
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: Run Gosec | |
on: | |
pull_request: | |
push: | |
branches: | |
- develop | |
- main | |
- master | |
permissions: | |
contents: read | |
security-events: write | |
jobs: | |
Gosec: | |
permissions: | |
contents: read | |
security-events: write | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: on | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
- name: Get Diff | |
uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/*.go | |
go.mod | |
go.sum | |
- name: Run Gosec Security Scanner | |
uses: cosmos/gosec@master | |
with: | |
# we let the report trigger content trigger a failure using the GitHub Security features. | |
# exclude G705 as it is almost always a false positive, it is removed from gosec master | |
# but the action has not been updated to reflect the change. | |
args: "-exclude G705 -no-fail -fmt sarif -out results.sarif ./..." | |
if: "env.GIT_DIFF_FILTERED != ''" | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
# Path to SARIF file relative to the root of the repository | |
sarif_file: results.sarif | |
if: "env.GIT_DIFF_FILTERED != ''" |