add goscan action (insert spiderman meme)
All checks were successful
Gosec Check / Gosec Check (push) Successful in 1m50s

This commit is contained in:
Shane C 2024-09-06 10:31:37 -04:00
parent 13e8182a8d
commit 1238666980
Signed by: shanec
GPG key ID: E46B5FEA35B22FF9

View file

@ -0,0 +1,20 @@
name: Gosec Check
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
gosec:
name: Gosec Check
runs-on: node20-bookworm
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- run: go mod download && go install github.com/a-h/templ/cmd/templ@latest
- run: templ generate
- name: Run Gosec Security Scanner
uses: actions/goscan@main