Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 5 additions & 2 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,18 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
go-version: '1.24'
cache: true

# Dependency vulnerability scan
# Note: Go 1.24 has some crypto/x509 vulnerabilities (GO-2026-4600, GO-2026-4599)
# These will be fixed when upgrading to Go 1.26+, but we keep Go 1.24 for compatibility
- name: Run govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: '1.25'
go-version-input: '1.24'
check-latest: true
continue-on-error: true

# Security code scan
- name: Run Gosec Security Scanner
Expand Down
Loading
Loading