Skip to content

Commit 72c98fd

Browse files
committed
Address oauth2 vuln
Address CVE-2025-22868 Signed-off-by: Dale Haiducek <19750917+dhaiducek@users.noreply.github.com>
1 parent 9f7f570 commit 72c98fd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: build/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Stage 1: Use image builder to build the target binaries
22
# Copyright Contributors to the Open Cluster Management project
33

4-
FROM registry.ci.openshift.org/stolostron/builder:go1.22-linux AS builder
4+
FROM registry.ci.openshift.org/stolostron/builder:go1.23-linux AS builder
55

66
ENV COMPONENT=governance-policy-propagator
77
ENV REPO_PATH=/go/src/github.com/open-cluster-management/${COMPONENT}

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ require (
8686
golang.org/x/crypto v0.31.0 // indirect
8787
golang.org/x/exp v0.0.0-20240525044651-4c93da0ed11d // indirect
8888
golang.org/x/net v0.33.0 // indirect
89-
golang.org/x/oauth2 v0.21.0 // indirect
89+
golang.org/x/oauth2 v0.27.0 // indirect
9090
golang.org/x/sync v0.10.0 // indirect
9191
golang.org/x/sys v0.28.0 // indirect
9292
golang.org/x/term v0.27.0 // indirect

Diff for: go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug
202202
golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY=
203203
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
204204
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
205-
golang.org/x/oauth2 v0.21.0 h1:tsimM75w1tF/uws5rbeHzIWxEqElMehnc+iW793zsZs=
206-
golang.org/x/oauth2 v0.21.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
205+
golang.org/x/oauth2 v0.27.0 h1:da9Vo7/tDv5RH/7nZDz1eMGS/q1Vv1N/7FCrBhI9I3M=
206+
golang.org/x/oauth2 v0.27.0/go.mod h1:onh5ek6nERTohokkhCD/y2cV4Do3fxFHFuAejCkRWT8=
207207
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
208208
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
209209
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

0 commit comments

Comments
 (0)