Skip to content

Commit eb26fd3

Browse files
fix: bump go to 1.25.9 to resolve govulncheck findings
go 1.25.8 has 4 known vulnerabilities in the standard library (crypto/x509, crypto/tls, archive/tar) that cause govulncheck to fail in CI. go 1.25.9 fixes all of them.
1 parent 0aab538 commit eb26fd3

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- name: Setup Go 1.25.8
8+
- name: Setup Go 1.25.9
99
uses: actions/setup-go@v5
1010
with:
11-
go-version: 1.25.8
11+
go-version: 1.25.9
1212
# You can test your matrix by printing the current Go version
1313
- name: Display Go version
1414
run: go version

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Set up Go
3535
uses: actions/setup-go@v5
3636
with:
37-
go-version: "1.25.8"
37+
go-version: "1.25.9"
3838

3939
- name: Run GoReleaser
4040
uses: goreleaser/goreleaser-action@v6

go.mod

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

3-
go 1.25.8
3+
go 1.25.9
44

55
require (
66
github.com/denisbrodbeck/machineid v1.0.1

0 commit comments

Comments
 (0)