Skip to content

Commit

Permalink
Scan code with govulncheck
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandear committed Dec 5, 2023
1 parent 465212d commit 756f580
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Security Scan

on:
schedule:
# Every Monday at 1PM UTC
- cron: "0 13 * * 1"
push:
branches: [main]
pull_request:
branches: [main]

jobs:
vulncheck:
name: Scan for vulnerabilities in Go code
runs-on: ubuntu-latest
steps:
- name: govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: 1.19
go-package: ./...

0 comments on commit 756f580

Please sign in to comment.