Skip to content

Commit 7bb5e38

Browse files
committed
[1-15-3] Fix CVE
Signed-off-by: savitaashture <[email protected]>
1 parent ce783dd commit 7bb5e38

File tree

446 files changed

+66520
-27593
lines changed

Some content is hidden

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

446 files changed

+66520
-27593
lines changed

.konflux/dockerfiles/controller.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22
1+
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23
22
ARG RUNTIME=registry.redhat.io/ubi8/ubi:latest@sha256:8bd1b6306f8164de7fb0974031a0f903bd3ab3e6bcab835854d3d9a1a74ea5db
33

44
FROM $GO_BUILDER AS builder

.konflux/dockerfiles/entrypoint.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22
1+
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23
22
ARG RUNTIME=registry.redhat.io/ubi8/ubi:latest@sha256:8bd1b6306f8164de7fb0974031a0f903bd3ab3e6bcab835854d3d9a1a74ea5db
33

44
FROM $GO_BUILDER AS builder

.konflux/dockerfiles/events.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22
1+
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23
22
ARG RUNTIME=registry.redhat.io/ubi8/ubi:latest@sha256:8bd1b6306f8164de7fb0974031a0f903bd3ab3e6bcab835854d3d9a1a74ea5db
33

44
FROM $GO_BUILDER AS builder

.konflux/dockerfiles/nop.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22
1+
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23
22
ARG RUNTIME=scratch
33

44
FROM $GO_BUILDER AS builder

.konflux/dockerfiles/resolvers.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22
1+
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23
22
ARG RUNTIME=registry.redhat.io/ubi8/ubi:latest@sha256:8bd1b6306f8164de7fb0974031a0f903bd3ab3e6bcab835854d3d9a1a74ea5db
33

44
FROM $GO_BUILDER AS builder

.konflux/dockerfiles/sidecarlogresults.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22
1+
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23
22
ARG RUNTIME=registry.redhat.io/ubi8/ubi:latest@sha256:8bd1b6306f8164de7fb0974031a0f903bd3ab3e6bcab835854d3d9a1a74ea5db
33

44
FROM $GO_BUILDER AS builder

.konflux/dockerfiles/webhook.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22
1+
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23
22
ARG RUNTIME=registry.redhat.io/ubi8/ubi:latest@sha256:8bd1b6306f8164de7fb0974031a0f903bd3ab3e6bcab835854d3d9a1a74ea5db
33

44
FROM $GO_BUILDER AS builder

.konflux/dockerfiles/workingdirinit.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22
1+
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23
22
ARG RUNTIME=registry.redhat.io/ubi8/ubi:latest@sha256:8bd1b6306f8164de7fb0974031a0f903bd3ab3e6bcab835854d3d9a1a74ea5db
33

44
FROM $GO_BUILDER AS builder

upstream/go.mod

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
module github.com/tektoncd/pipeline
22

3-
go 1.21
3+
go 1.23.0
4+
5+
toolchain go1.23.8
46

57
require (
68
github.com/Microsoft/go-winio v0.6.1 // indirect
79
github.com/ahmetb/gen-crd-api-reference-docs v0.3.1-0.20220720053627-e327d0730470 // Waiting for https://github.com/ahmetb/gen-crd-api-reference-docs/pull/43/files to merge
810
github.com/cloudevents/sdk-go/v2 v2.15.2
911
github.com/containerd/containerd v1.7.15
10-
github.com/go-git/go-git/v5 v5.12.0
12+
github.com/go-git/go-git/v5 v5.13.0
1113
github.com/google/go-cmp v0.6.0
1214
github.com/google/go-containerregistry v0.19.1
1315
github.com/google/uuid v1.6.0
@@ -24,7 +26,7 @@ require (
2426
github.com/tektoncd/plumbing v0.0.0-20220817140952-3da8ce01aeeb
2527
go.opencensus.io v0.24.0
2628
go.uber.org/zap v1.27.0
27-
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc
29+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
2830
golang.org/x/oauth2 v0.18.0 // indirect
2931
gomodules.xyz/jsonpatch/v2 v2.4.0
3032
k8s.io/api v0.28.5
@@ -64,10 +66,10 @@ require (
6466
)
6567

6668
require (
67-
github.com/ProtonMail/go-crypto v1.0.0 // indirect
69+
github.com/ProtonMail/go-crypto v1.1.3 // indirect
6870
github.com/emirpasic/gods v1.18.1 // indirect
6971
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
70-
github.com/go-git/go-billy/v5 v5.5.0
72+
github.com/go-git/go-billy/v5 v5.6.0
7173
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
7274
github.com/kevinburke/ssh_config v1.2.0 // indirect
7375
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
@@ -95,14 +97,14 @@ require (
9597
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
9698
github.com/cloudflare/circl v1.3.7 // indirect
9799
github.com/containerd/log v0.1.0 // indirect
98-
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
100+
github.com/cyphar/filepath-securejoin v0.2.5 // indirect
99101
github.com/davidmz/go-pageant v1.0.2 // indirect
100102
github.com/emicklei/go-restful/v3 v3.10.2 // indirect
101103
github.com/felixge/httpsnoop v1.0.4 // indirect
102104
github.com/go-fed/httpsig v1.1.0 // indirect
103105
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
104106
github.com/go-logr/stdr v1.2.2 // indirect
105-
github.com/golang-jwt/jwt/v5 v5.2.0 // indirect
107+
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
106108
github.com/google/gnostic-models v0.6.8 // indirect
107109
github.com/google/s2a-go v0.1.7 // indirect
108110
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
@@ -125,7 +127,7 @@ require (
125127
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
126128
github.com/ryanuber/go-glob v1.0.0 // indirect
127129
github.com/secure-systems-lab/go-securesystemslib v0.8.0 // indirect
128-
github.com/skeema/knownhosts v1.2.2 // indirect
130+
github.com/skeema/knownhosts v1.3.0 // indirect
129131
github.com/stoewer/go-strcase v1.2.0 // indirect
130132
github.com/titanous/rocacheck v0.0.0-20171023193734-afe73141d399 // indirect
131133
github.com/zeebo/errs v1.3.0 // indirect
@@ -178,7 +180,7 @@ require (
178180
github.com/dimchansky/utfbom v1.1.1 // indirect
179181
github.com/docker/cli v24.0.7+incompatible // indirect
180182
github.com/docker/distribution v2.8.2+incompatible // indirect
181-
github.com/docker/docker v26.0.0+incompatible // indirect
183+
github.com/docker/docker v26.1.5+incompatible // indirect
182184
github.com/docker/docker-credential-helpers v0.7.0 // indirect
183185
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
184186
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
@@ -190,7 +192,7 @@ require (
190192
github.com/go-openapi/swag v0.22.3 // indirect
191193
github.com/gobuffalo/flect v1.0.2 // indirect
192194
github.com/gogo/protobuf v1.3.2 // indirect
193-
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
195+
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
194196
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
195197
github.com/golang/protobuf v1.5.4 // indirect
196198
github.com/google/gofuzz v1.2.0 // indirect
@@ -220,19 +222,19 @@ require (
220222
github.com/shurcooL/graphql v0.0.0-20181231061246-d48a9a75455f // indirect
221223
github.com/sirupsen/logrus v1.9.3 // indirect
222224
github.com/spf13/pflag v1.0.5 // indirect
223-
github.com/stretchr/testify v1.9.0
225+
github.com/stretchr/testify v1.10.0
224226
github.com/vbatts/tar-split v0.11.3 // indirect
225227
go.uber.org/automaxprocs v1.5.3 // indirect
226228
go.uber.org/multierr v1.11.0 // indirect
227-
golang.org/x/crypto v0.22.0 // indirect
228-
golang.org/x/mod v0.14.0 // indirect
229-
golang.org/x/net v0.24.0 // indirect
230-
golang.org/x/sync v0.7.0
231-
golang.org/x/sys v0.19.0 // indirect
232-
golang.org/x/term v0.19.0 // indirect
233-
golang.org/x/text v0.14.0 // indirect
229+
golang.org/x/crypto v0.35.0 // indirect
230+
golang.org/x/mod v0.19.0 // indirect
231+
golang.org/x/net v0.33.0 // indirect
232+
golang.org/x/sync v0.11.0
233+
golang.org/x/sys v0.30.0 // indirect
234+
golang.org/x/term v0.29.0 // indirect
235+
golang.org/x/text v0.22.0 // indirect
234236
golang.org/x/time v0.5.0 // indirect
235-
golang.org/x/tools v0.17.0 // indirect
237+
golang.org/x/tools v0.23.0 // indirect
236238
google.golang.org/api v0.171.0 // indirect
237239
google.golang.org/appengine v1.6.8 // indirect
238240
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect

0 commit comments

Comments
 (0)