Nicer interface for GoSec action
|
|
||
|---|---|---|
| .forgejo/workflows | ||
| cmd | ||
| docker | ||
| interfaces | ||
| linux | ||
| .actrc | ||
| .example.env | ||
| .gitignore | ||
| action.yml | ||
| example.config.yml | ||
| example.sarif | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| main.go | ||
| README.md | ||
| Taskfile.yml | ||
goscan
Gosec with some stuff with actions.
Workflow example
name: GoSec Scan
on:
schedule:
- cron: "@weekly"
push:
branches: ["main"]
workflow_dispatch:
jobs:
gosec:
name: Gosec Check
runs-on: node24-bookworm
steps:
- name: Checkout
uses: https://forging.mcst.io/actions/checkout@v5
- name: Run Gosec Security Scanner
uses: https://forging.mcst.io/actions/goscan@main