goscan/README.md
Shane C d26acf9ee0
All checks were successful
GoSec Scan / Gosec Check (push) Successful in 51s
update readme
2024-09-11 19:13:30 -04:00

590 B

goscan

Gosec with some stuff with actions.

Workflow example

name: GoSec Scan
on:
  schedule:
    - cron: "@daily"
  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
      - uses: https://git.shadowhosting.xyz/actions/setup-go@v5
        with:
          go-version: '1.22'
      - run: go mod download
      - name: Run Gosec Security Scanner
        uses: https://git.shadowhosting.xyz/actions/goscan@main