2021-11-16 09:36:22 +00:00
|
|
|
name: Run Gosec
|
|
|
|
on:
|
2021-11-24 11:42:47 +00:00
|
|
|
pull_request:
|
2021-11-16 09:36:22 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2021-11-24 11:42:47 +00:00
|
|
|
|
2021-11-16 09:36:22 +00:00
|
|
|
jobs:
|
2021-11-24 11:42:47 +00:00
|
|
|
Gosec:
|
2021-11-16 09:36:22 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
GO111MODULE: on
|
|
|
|
steps:
|
|
|
|
- name: Checkout Source
|
2022-03-03 17:07:19 +00:00
|
|
|
uses: actions/checkout@v3
|
2021-11-24 11:42:47 +00:00
|
|
|
- name: Get Diff
|
2022-01-05 10:34:28 +00:00
|
|
|
uses: technote-space/get-diff-action@v6.0.1
|
2021-11-24 11:42:47 +00:00
|
|
|
with:
|
|
|
|
PATTERNS: |
|
|
|
|
**/*.go
|
|
|
|
go.mod
|
|
|
|
go.sum
|
2021-11-16 09:36:22 +00:00
|
|
|
- name: Run Gosec Security Scanner
|
2022-10-18 06:10:03 +00:00
|
|
|
uses: cosmos/gosec@master
|
2021-11-16 09:36:22 +00:00
|
|
|
with:
|
|
|
|
# we let the report trigger content trigger a failure using the GitHub Security features.
|
2021-11-24 11:42:47 +00:00
|
|
|
args: '-no-fail -fmt sarif -out results.sarif ./...'
|
|
|
|
if: "env.GIT_DIFF_FILTERED != ''"
|
|
|
|
- name: Upload SARIF file
|
|
|
|
uses: github/codeql-action/upload-sarif@v1
|
|
|
|
with:
|
|
|
|
# Path to SARIF file relative to the root of the repository
|
|
|
|
sarif_file: results.sarif
|
|
|
|
if: "env.GIT_DIFF_FILTERED != ''"
|