Skip to content

Commit c92836d

Browse files
committed
chore(deps): update grpc and tektoncd/pipeline
Upgrade google.golang.org/grpc to v1.79.3 to fix CVE-2026-33186 (GHSA-p77j-4mvh-x3m3), a critical HTTP/2 :path validation flaw that allows bypassing authorization rules in gRPC interceptors. Upgrade github.com/tektoncd/pipeline to v1.0.1 to address CVE-2026-33211 (GHSA-j5q5-j9gm-2w5c), a path traversal in the git resolver that could expose ServiceAccount tokens. Signed-off-by: Akshay Pant <akpant@redhat.com>
1 parent afe9908 commit c92836d

File tree

240 files changed

+9273
-12044
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

240 files changed

+9273
-12044
lines changed

go.mod

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/openshift-pipelines/pipelines-as-code
22

3-
go 1.23.8
3+
go 1.24.0
44

55
toolchain go1.24.2
66

@@ -28,14 +28,14 @@ require (
2828
github.com/pkg/errors v0.9.1
2929
github.com/spf13/cobra v1.9.1
3030
github.com/stretchr/testify v1.10.0
31-
github.com/tektoncd/pipeline v1.0.0
31+
github.com/tektoncd/pipeline v1.0.1
3232
gitlab.com/gitlab-org/api/client-go v0.128.0
3333
go.opencensus.io v0.24.0
3434
go.uber.org/zap v1.27.0
3535
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0
36-
golang.org/x/oauth2 v0.30.0
37-
golang.org/x/sync v0.14.0
38-
golang.org/x/text v0.24.0
36+
golang.org/x/oauth2 v0.34.0
37+
golang.org/x/sync v0.19.0
38+
golang.org/x/text v0.32.0
3939
gopkg.in/yaml.v2 v2.4.0
4040
gotest.tools/v3 v3.5.2
4141
k8s.io/api v0.32.4
@@ -48,15 +48,15 @@ require (
4848
)
4949

5050
require (
51-
cel.dev/expr v0.23.1 // indirect
51+
cel.dev/expr v0.25.1 // indirect
5252
github.com/42wim/httpsig v1.2.3 // indirect
5353
github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 // indirect
5454
github.com/cert-manager/cert-manager v1.17.2 // indirect
5555
github.com/cloudevents/sdk-go/sql/v2 v2.0.0-20240712172937-3ce6b2f1f011 // indirect
5656
github.com/coreos/go-oidc/v3 v3.14.1 // indirect
5757
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
5858
github.com/go-jose/go-jose/v3 v3.0.4 // indirect
59-
github.com/go-jose/go-jose/v4 v4.1.0 // indirect
59+
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
6060
github.com/google/gofuzz v1.2.0 // indirect
6161
github.com/rickb777/plural v1.4.3 // indirect
6262
github.com/robfig/cron/v3 v3.0.1 // indirect
@@ -85,7 +85,7 @@ require (
8585
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
8686
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
8787
github.com/go-fed/httpsig v1.1.1-0.20201223112313-55836744818e // indirect
88-
github.com/go-logr/logr v1.4.2 // indirect
88+
github.com/go-logr/logr v1.4.3 // indirect
8989
github.com/go-openapi/jsonpointer v0.21.1 // indirect
9090
github.com/go-openapi/jsonreference v0.21.0 // indirect
9191
github.com/go-openapi/swag v0.23.1 // indirect
@@ -126,17 +126,17 @@ require (
126126
github.com/xlzd/gotp v0.1.0 // indirect
127127
go.uber.org/automaxprocs v1.6.0 // indirect
128128
go.uber.org/multierr v1.11.0 // indirect
129-
golang.org/x/crypto v0.37.0 // indirect
130-
golang.org/x/net v0.39.0 // indirect
131-
golang.org/x/sys v0.33.0 // indirect
132-
golang.org/x/term v0.31.0 // indirect
129+
golang.org/x/crypto v0.46.0 // indirect
130+
golang.org/x/net v0.48.0 // indirect
131+
golang.org/x/sys v0.39.0 // indirect
132+
golang.org/x/term v0.38.0 // indirect
133133
golang.org/x/time v0.11.0 // indirect
134134
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
135135
google.golang.org/api v0.231.0 // indirect
136-
google.golang.org/genproto/googleapis/api v0.0.0-20250428153025-10db94c68c34 // indirect
137-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250428153025-10db94c68c34 // indirect
138-
google.golang.org/grpc v1.72.0 // indirect
139-
google.golang.org/protobuf v1.36.6
136+
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
137+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
138+
google.golang.org/grpc v1.79.3 // indirect
139+
google.golang.org/protobuf v1.36.10
140140
gopkg.in/inf.v0 v0.9.1 // indirect
141141
gopkg.in/yaml.v3 v3.0.1 // indirect
142142
k8s.io/apiextensions-apiserver v0.32.4 // indirect

go.sum

Lines changed: 46 additions & 44 deletions
Large diffs are not rendered by default.

vendor/cel.dev/expr/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ go_library(
1616
importpath = "cel.dev/expr",
1717
visibility = ["//visibility:public"],
1818
deps = [
19-
"@org_golang_google_genproto_googleapis_rpc//status:go_default_library",
2019
"@org_golang_google_protobuf//reflect/protoreflect",
2120
"@org_golang_google_protobuf//runtime/protoimpl",
2221
"@org_golang_google_protobuf//types/known/anypb",

vendor/cel.dev/expr/MODULE.bazel

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,9 @@ bazel_dep(
1111
version = "0.39.1",
1212
repo_name = "bazel_gazelle",
1313
)
14-
bazel_dep(
15-
name = "googleapis",
16-
version = "0.0.0-20241220-5e258e33.bcr.1",
17-
repo_name = "com_google_googleapis",
18-
)
19-
bazel_dep(
20-
name = "googleapis-cc",
21-
version = "1.0.0",
22-
)
23-
bazel_dep(
24-
name = "googleapis-java",
25-
version = "1.0.0",
26-
)
27-
bazel_dep(
28-
name = "googleapis-go",
29-
version = "1.0.0",
30-
)
3114
bazel_dep(
3215
name = "protobuf",
33-
version = "27.0",
16+
version = "27.1",
3417
repo_name = "com_google_protobuf",
3518
)
3619
bazel_dep(
@@ -63,12 +46,11 @@ python.toolchain(
6346
)
6447

6548
go_sdk = use_extension("@io_bazel_rules_go//go:extensions.bzl", "go_sdk")
66-
go_sdk.download(version = "1.22.0")
49+
go_sdk.download(version = "1.23.0")
6750

6851
go_deps = use_extension("@bazel_gazelle//:extensions.bzl", "go_deps")
6952
go_deps.from_file(go_mod = "//:go.mod")
7053
use_repo(
7154
go_deps,
72-
"org_golang_google_genproto_googleapis_rpc",
7355
"org_golang_google_protobuf",
7456
)

0 commit comments

Comments
 (0)