goscan/README.md
Shane C 03e9e6bc40
All checks were successful
GoSec Scan / Gosec Check (push) Successful in 7s
add basic bot
2024-09-13 16:56:18 -04:00

455 B

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: node20-bookworm
    steps:
      - name: Checkout
        uses: https://git.shadowhosting.xyz/actions/checkout@v4
      - name: Run Gosec Security Scanner
        uses: https://git.shadowhosting.xyz/actions/goscan@main