Skip to content

Commit a66bc6e

Browse files
dhaiducekopenshift-merge-bot[bot]
authored andcommitted
[release-2.12] Address oauth2 vuln
Address CVE-2025-22868 Signed-off-by: Dale Haiducek <19750917+dhaiducek@users.noreply.github.com>
1 parent b18d2fe commit a66bc6e

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

.ci-operator.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
build_root_image:
22
name: builder
33
namespace: stolostron
4-
tag: go1.22-linux
4+
tag: go1.23-linux

.github/workflows/kind.yml

-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ jobs:
9696
run: |
9797
make fmt
9898
git diff --exit-code
99-
make lint
10099
101100
- name: Bootstrap the KinD Cluster
102101
working-directory: framework

build/Dockerfile.e2etest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2020 Red Hat, Inc.
22

33
# Stage 1: Use image builder to retrieve Go binaries
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
# Stage 2: Copy Go binaries and run tests on ubi-minimal
77
FROM registry.access.redhat.com/ubi9/ubi-minimal:latest

build/common/Makefile.common.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CONTROLLER_GEN_VERSION := v0.16.3
77
# https://github.com/kubernetes-sigs/kustomize/releases/latest
88
KUSTOMIZE_VERSION := v5.4.3
99
# https://github.com/golangci/golangci-lint/releases/latest
10-
GOLANGCI_VERSION := v1.52.2
10+
GOLANGCI_VERSION := v1.60.3
1111
# https://github.com/mvdan/gofumpt/releases/latest
1212
GOFUMPT_VERSION := v0.7.0
1313
# https://github.com/daixiang0/gci/releases/latest

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/stolostron/governance-policy-framework
22

3-
go 1.22.0
3+
go 1.23.0
44

55
require (
66
github.com/google/uuid v1.6.0
@@ -66,7 +66,7 @@ require (
6666
golang.org/x/exp v0.0.0-20240525044651-4c93da0ed11d // indirect
6767
golang.org/x/mod v0.17.0
6868
golang.org/x/net v0.33.0 // indirect
69-
golang.org/x/oauth2 v0.20.0 // indirect
69+
golang.org/x/oauth2 v0.27.0 // indirect
7070
golang.org/x/sys v0.28.0 // indirect
7171
golang.org/x/term v0.27.0 // indirect
7272
golang.org/x/text v0.21.0 // indirect

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,8 @@ golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug
199199
golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY=
200200
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
201201
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
202-
golang.org/x/oauth2 v0.20.0 h1:4mQdhULixXKP1rwYBW0vAijoXnkTG0BLCDRzfe1idMo=
203-
golang.org/x/oauth2 v0.20.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
202+
golang.org/x/oauth2 v0.27.0 h1:da9Vo7/tDv5RH/7nZDz1eMGS/q1Vv1N/7FCrBhI9I3M=
203+
golang.org/x/oauth2 v0.27.0/go.mod h1:onh5ek6nERTohokkhCD/y2cV4Do3fxFHFuAejCkRWT8=
204204
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
205205
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
206206
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

0 commit comments

Comments
 (0)