Gosec with some stuff with actions.
Find a file
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
.forgejo/workflows update gosec action 2024-09-11 20:03:49 -04:00
cmd add basic bot 2024-09-13 16:56:18 -04:00
docker add basic bot 2024-09-13 16:56:18 -04:00
interfaces add basic bot 2024-09-13 16:56:18 -04:00
.actrc log cwd to see if anything is going wrong 2024-09-06 17:33:50 -04: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 use inputs to get token 2024-09-06 21:32:20 -04:00
example.config.yml add basic bot 2024-09-13 16:56:18 -04:00
example.sarif add parsing of sarif file and outputting markdown 2024-09-05 23:04:11 -04:00
go.mod add basic bot 2024-09-13 16:56:18 -04:00
go.sum add basic bot 2024-09-13 16:56:18 -04:00
LICENSE Initial commit 2024-09-05 16:30:50 +01:00
main.go add parsing of sarif file and outputting markdown 2024-09-05 23:04:11 -04:00
README.md add basic bot 2024-09-13 16:56:18 -04:00
Taskfile.yml add basic bot 2024-09-13 16:56:18 -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: 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