Skip to content

Commit 0e98772

Browse files
ndbroadbentclaude
andcommitted
fix: upgrade Go to 1.25.7 to fix GO-2026-4337 vulnerability
Go 1.25.7 was just released to fix a new crypto/tls vulnerability (GO-2026-4337: Unexpected session resumption in crypto/tls). Updated all workflow files and go.mod to use Go 1.25.7. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 54f8bf6 commit 0e98772

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: "1.25.6"
22+
go-version: "1.25.7"
2323

2424
- name: Install libfido2 dependencies
2525
run: |
@@ -63,7 +63,7 @@ jobs:
6363
- name: Setup Go
6464
uses: actions/setup-go@v5
6565
with:
66-
go-version: "1.25.6"
66+
go-version: "1.25.7"
6767

6868
- name: Cache golangci-lint cache
6969
uses: actions/cache@v4

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
- name: Setup Go
158158
uses: actions/setup-go@v5
159159
with:
160-
go-version: "1.25.6"
160+
go-version: "1.25.7"
161161

162162
- name: Download gateway image
163163
uses: actions/download-artifact@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- name: Setup Go
7878
uses: actions/setup-go@v5
7979
with:
80-
go-version: "1.25.6"
80+
go-version: "1.25.7"
8181
- name: Build binary
8282
env:
8383
CGO_ENABLED: 0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/DocSpring/rack-gateway
22

3-
go 1.25.6
3+
go 1.25.7
44

55
require (
66
github.com/GeertJohan/yubigo v0.0.0-20190917122436-175bc097e60e

0 commit comments

Comments
 (0)