Skip to content

Commit 6345180

Browse files
fix: [CI-21721]: Update Go toolchain to resolve CVE-2026-25679 (#56)
Updates Go toolchain to address security vulnerability: - CVE-2026-25679 (HIGH): Incorrect IPv6 host literal parsing in net/url. Updated Go toolchain from v1.25.7 to v1.25.8 This vulnerability was published on March 6, 2026 and affects URL parsing for IPv6 addresses. Note: CVE-2025-15558 in docker/cli v28.0.4 remains unresolved as upgrading to v29.2.0 would break compatibility with harness/nektos-act/v2 v2.0.0. This is a Windows-specific vulnerability with limited impact for Linux-only builds. Tracking upgrade when nektos-act supports docker/cli v29+.
1 parent ce2a1fb commit 6345180

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docker/Dockerfile-plugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ---------------------------------------------------------#
22
# Build Plugin Binary #
33
# ---------------------------------------------------------#
4-
FROM us-west1-docker.pkg.dev/gar-setup/docker/golang:1.25.7 as builder
4+
FROM us-west1-docker.pkg.dev/gar-setup/docker/golang:1.25.8 as builder
55

66
RUN apt-get update && apt-get install -y --no-install-recommends \
77
ca-certificates git && \

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/drone/plugin
22

33
go 1.24.0
44

5-
toolchain go1.25.7
5+
toolchain go1.25.8
66

77
require (
88
github.com/buildkite/yaml v2.1.0+incompatible

0 commit comments

Comments
 (0)