Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/docs-and-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,29 @@ jobs:
with:
name: oci-docs
path: output

security-scan:
runs-on: ubuntu-latest
name: Security Vulnerability Scan
steps:
- uses: actions/checkout@v4


- uses: actions/setup-go@v5
with:
go-version: stable
cache-dependency-path: ./**/go.sum


- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest


- name: Run govulncheck on root module
run: govulncheck ./...


- name: Run govulncheck on schema module
run: |
cd schema
govulncheck ./...