Nicer interface for GoSec action
Find a file
Shane C. 20aef7aedd
Some checks failed
gosec.yml / update urls (push) Failing after 0s
update urls
2025-11-03 17:39:20 -05:00
.forgejo/workflows update urls 2025-11-03 17:39:20 -05:00
cmd update codebase 2025-10-16 21:18:44 -04:00
docker update urls 2025-11-03 17:39:20 -05:00
interfaces add basic bot 2024-09-13 16:56:18 -04:00
linux update codebase 2025-10-16 21:18:44 -04:00
.actrc update urls 2025-11-03 17:39:20 -05:00
.example.env add basic bot 2024-09-13 16:56:18 -04:00
.gitignore add basic bot 2024-09-13 16:56:18 -04:00
action.yml update codebase 2025-10-16 21:18:44 -04:00
example.config.yml update codebase 2025-10-16 21:18:44 -04:00
example.sarif add parsing of sarif file and outputting markdown 2024-09-05 23:04:11 -04:00
go.mod update codebase 2025-10-16 21:18:44 -04:00
go.sum update codebase 2025-10-16 21:18:44 -04:00
LICENSE Initial commit 2024-09-05 16:30:50 +01:00
main.go update codebase 2025-10-16 21:18:44 -04:00
README.md update codebase 2025-10-16 21:18:44 -04:00
Taskfile.yml update codebase 2025-10-16 21:18:44 -04:00

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