Skip to content

Commit 54b28f6

Browse files
committed
fix: upgrade Security Scan to Go 1.26 to fix crypto/x509 vulnerabilities
- GO-2026-4600: Panic in name constraint checking (fixed in Go 1.26.1) - GO-2026-4599: Incorrect email constraints (fixed in Go 1.26.1)
1 parent 9569ec8 commit 54b28f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
- name: Setup Go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: '1.25'
23+
go-version: '1.26'
2424
cache: true
2525

2626
# Dependency vulnerability scan
2727
- name: Run govulncheck
2828
uses: golang/govulncheck-action@v1
2929
with:
30-
go-version-input: '1.25'
30+
go-version-input: '1.26'
3131
check-latest: true
3232

3333
# Security code scan

0 commit comments

Comments
 (0)