Skip to content

Commit 9362db3

Browse files
authored
Merge branch 'tektoncd:main' into main
2 parents 6bc5b00 + 3814216 commit 9362db3

File tree

983 files changed

+390802
-8033
lines changed

Some content is hidden

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

983 files changed

+390802
-8033
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
# Initializes the CodeQL tools for scanning.
4646
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@v2
47+
uses: github/codeql-action/init@v3
4848
with:
4949
languages: ${{ matrix.language }}
5050
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -58,7 +58,7 @@ jobs:
5858
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5959
# If this step fails, then you should remove it and run the build manually (see below)
6060
- name: Autobuild
61-
uses: github/codeql-action/autobuild@v2
61+
uses: github/codeql-action/autobuild@v3
6262

6363
# ℹ️ Command-line programs to run using the OS shell.
6464
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -71,6 +71,6 @@ jobs:
7171
# ./location_of_script_within_repo/buildscript.sh
7272

7373
- name: Perform CodeQL Analysis
74-
uses: github/codeql-action/analyze@v2
74+
uses: github/codeql-action/analyze@v3
7575
with:
7676
category: "/language:${{matrix.language}}"

.github/workflows/reusable-e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ defaults:
1919
jobs:
2020
e2e-test:
2121
name: e2e test
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-22.04
2323

2424
env:
2525
GOPATH: ${{ github.workspace }}
2626
GO111MODULE: on
2727
GOFLAGS: -ldflags=-s -ldflags=-w
2828
KO_DOCKER_REPO: registry.local:5000/knative
2929
KOCACHE: ~/ko
30-
SIGSTORE_SCAFFOLDING_RELEASE_VERSION: "v0.7.2"
30+
SIGSTORE_SCAFFOLDING_RELEASE_VERSION: "v0.7.12"
3131
TEKTON_PIPELINES_RELEASE: "https://storage.googleapis.com/tekton-releases/pipeline/previous/${{ inputs.pipelines-release }}/release.yaml"
3232
# Note that we do not include the v prefix here so we can use it in all
3333
# the places this is used.

go.mod

Lines changed: 57 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
module github.com/tektoncd/chains
22

33
go 1.22.5
4+
toolchain go1.22.8
45

56
require (
67
cloud.google.com/go/compute/metadata v0.5.2
7-
cloud.google.com/go/storage v1.43.0
8+
cloud.google.com/go/storage v1.44.0
89
github.com/fsnotify/fsnotify v1.7.0
910
github.com/golangci/golangci-lint v1.61.0
1011
github.com/google/addlicense v1.1.1
@@ -19,26 +20,26 @@ require (
1920
github.com/opencontainers/go-digest v1.0.0
2021
github.com/pkg/errors v0.9.1
2122
github.com/secure-systems-lab/go-securesystemslib v0.8.0
22-
github.com/sigstore/cosign/v2 v2.4.0
23+
github.com/sigstore/cosign/v2 v2.4.1
2324
github.com/sigstore/rekor v1.3.6
2425
github.com/sigstore/sigstore v1.8.9
2526
github.com/sigstore/sigstore/pkg/signature/kms/aws v1.8.9
2627
github.com/sigstore/sigstore/pkg/signature/kms/azure v1.8.9
2728
github.com/sigstore/sigstore/pkg/signature/kms/gcp v1.8.9
2829
github.com/sigstore/sigstore/pkg/signature/kms/hashivault v1.8.9
29-
github.com/spiffe/go-spiffe/v2 v2.3.0
30+
github.com/spiffe/go-spiffe/v2 v2.4.0
3031
github.com/stretchr/testify v1.9.0
31-
github.com/tektoncd/pipeline v0.63.0
32+
github.com/tektoncd/pipeline v0.64.0
3233
github.com/tektoncd/plumbing v0.0.0-20230907180608-5625252a2de1
3334
go.opencensus.io v0.24.0
3435
go.uber.org/zap v1.27.0
35-
gocloud.dev v0.39.0
36-
gocloud.dev/docstore/mongodocstore v0.39.0
37-
gocloud.dev/pubsub/kafkapubsub v0.39.0
38-
golang.org/x/crypto v0.27.0
36+
gocloud.dev v0.40.0
37+
gocloud.dev/docstore/mongodocstore v0.40.0
38+
gocloud.dev/pubsub/kafkapubsub v0.40.0
39+
golang.org/x/crypto v0.28.0
3940
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e
40-
google.golang.org/grpc v1.67.0
41-
google.golang.org/protobuf v1.34.2
41+
google.golang.org/grpc v1.67.1
42+
google.golang.org/protobuf v1.35.1
4243
k8s.io/api v0.31.1
4344
k8s.io/apimachinery v0.31.1
4445
k8s.io/client-go v0.31.1
@@ -50,19 +51,21 @@ require (
5051
require (
5152
4d63.com/gocheckcompilerdirectives v1.2.1 // indirect
5253
4d63.com/gochecknoglobals v0.2.1 // indirect
54+
cel.dev/expr v0.16.1 // indirect
5355
cloud.google.com/go v0.115.1 // indirect
5456
cloud.google.com/go/auth v0.9.3 // indirect
5557
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
5658
cloud.google.com/go/firestore v1.16.0 // indirect
57-
cloud.google.com/go/iam v1.2.0 // indirect
59+
cloud.google.com/go/iam v1.2.1 // indirect
5860
cloud.google.com/go/kms v1.19.0 // indirect
59-
cloud.google.com/go/longrunning v0.6.0 // indirect
61+
cloud.google.com/go/longrunning v0.6.1 // indirect
62+
cloud.google.com/go/monitoring v1.21.0 // indirect
6063
contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
6164
contrib.go.opencensus.io/exporter/prometheus v0.4.2 // indirect
6265
filippo.io/edwards25519 v1.1.0 // indirect
6366
github.com/4meepo/tagalign v1.3.4 // indirect
6467
github.com/Abirdcfly/dupword v0.1.1 // indirect
65-
github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/alibabacloudsdkgo/helper v0.2.0 // indirect
68+
github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/provider v0.14.0 // indirect
6669
github.com/Antonboom/errname v0.1.13 // indirect
6770
github.com/Antonboom/nilnil v0.1.9 // indirect
6871
github.com/Antonboom/testifylint v1.4.3 // indirect
@@ -85,6 +88,9 @@ require (
8588
github.com/Crocmagnon/fatcontext v0.5.2 // indirect
8689
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect
8790
github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.0 // indirect
91+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.1 // indirect
92+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 // indirect
93+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect
8894
github.com/IBM/sarama v1.43.3 // indirect
8995
github.com/Masterminds/semver/v3 v3.3.0 // indirect
9096
github.com/Microsoft/go-winio v0.6.2 // indirect
@@ -105,27 +111,27 @@ require (
105111
github.com/alibabacloud-go/tea-utils v1.4.5 // indirect
106112
github.com/alibabacloud-go/tea-xml v1.1.3 // indirect
107113
github.com/alingse/asasalint v0.0.11 // indirect
108-
github.com/aliyun/credentials-go v1.3.1 // indirect
114+
github.com/aliyun/credentials-go v1.3.2 // indirect
109115
github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
110116
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
111117
github.com/ashanbrown/forbidigo v1.6.0 // indirect
112118
github.com/ashanbrown/makezero v1.1.1 // indirect
113119
github.com/aws/aws-sdk-go v1.55.5 // indirect
114-
github.com/aws/aws-sdk-go-v2 v1.30.4 // indirect
115-
github.com/aws/aws-sdk-go-v2/config v1.27.31 // indirect
116-
github.com/aws/aws-sdk-go-v2/credentials v1.17.30 // indirect
117-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.12 // indirect
118-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.16 // indirect
119-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.16 // indirect
120+
github.com/aws/aws-sdk-go-v2 v1.30.5 // indirect
121+
github.com/aws/aws-sdk-go-v2/config v1.27.33 // indirect
122+
github.com/aws/aws-sdk-go-v2/credentials v1.17.32 // indirect
123+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.13 // indirect
124+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.17 // indirect
125+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.17 // indirect
120126
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect
121127
github.com/aws/aws-sdk-go-v2/service/ecr v1.20.2 // indirect
122128
github.com/aws/aws-sdk-go-v2/service/ecrpublic v1.18.2 // indirect
123129
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.4 // indirect
124-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.18 // indirect
125-
github.com/aws/aws-sdk-go-v2/service/kms v1.35.5 // indirect
126-
github.com/aws/aws-sdk-go-v2/service/sso v1.22.5 // indirect
127-
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.5 // indirect
128-
github.com/aws/aws-sdk-go-v2/service/sts v1.30.5 // indirect
130+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.19 // indirect
131+
github.com/aws/aws-sdk-go-v2/service/kms v1.35.7 // indirect
132+
github.com/aws/aws-sdk-go-v2/service/sso v1.22.7 // indirect
133+
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.7 // indirect
134+
github.com/aws/aws-sdk-go-v2/service/sts v1.30.7 // indirect
129135
github.com/aws/smithy-go v1.20.4 // indirect
130136
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20231024185945-8841054dbdb8 // indirect
131137
github.com/beorn7/perks v1.0.1 // indirect
@@ -138,8 +144,8 @@ require (
138144
github.com/bombsimon/wsl/v4 v4.4.1 // indirect
139145
github.com/breml/bidichk v0.2.7 // indirect
140146
github.com/breml/errchkjson v0.3.6 // indirect
141-
github.com/buildkite/agent/v3 v3.76.2 // indirect
142-
github.com/buildkite/go-pipeline v0.10.0 // indirect
147+
github.com/buildkite/agent/v3 v3.81.0 // indirect
148+
github.com/buildkite/go-pipeline v0.13.1 // indirect
143149
github.com/buildkite/interpolate v0.1.3 // indirect
144150
github.com/buildkite/roko v1.2.0 // indirect
145151
github.com/butuzov/ireturn v0.3.0 // indirect
@@ -156,6 +162,7 @@ require (
156162
github.com/clbanning/mxj/v2 v2.7.0 // indirect
157163
github.com/cloudevents/sdk-go/v2 v2.15.2 // indirect
158164
github.com/cloudflare/circl v1.3.7 // indirect
165+
github.com/cncf/xds/go v0.0.0-20240905190251-b4127c9b8d78 // indirect
159166
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect
160167
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
161168
github.com/coreos/go-oidc/v3 v3.11.0 // indirect
@@ -176,6 +183,8 @@ require (
176183
github.com/eapache/queue v1.1.0 // indirect
177184
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
178185
github.com/emirpasic/gods v1.18.1 // indirect
186+
github.com/envoyproxy/go-control-plane v0.13.0 // indirect
187+
github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect
179188
github.com/ettle/strcase v0.2.0 // indirect
180189
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
181190
github.com/fatih/color v1.17.0 // indirect
@@ -188,7 +197,7 @@ require (
188197
github.com/go-chi/chi v4.1.2+incompatible // indirect
189198
github.com/go-critic/go-critic v0.11.4 // indirect
190199
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
191-
github.com/go-jose/go-jose/v4 v4.0.2 // indirect
200+
github.com/go-jose/go-jose/v4 v4.0.4 // indirect
192201
github.com/go-kit/log v0.2.1 // indirect
193202
github.com/go-logfmt/logfmt v0.6.0 // indirect
194203
github.com/go-logr/logr v1.4.2 // indirect
@@ -238,14 +247,14 @@ require (
238247
github.com/google/s2a-go v0.1.8 // indirect
239248
github.com/google/uuid v1.6.0 // indirect
240249
github.com/google/wire v0.6.0 // indirect
241-
github.com/googleapis/enterprise-certificate-proxy v0.3.3 // indirect
250+
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
242251
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
243252
github.com/gordonklaus/ineffassign v0.1.0 // indirect
244253
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
245254
github.com/gostaticanalysis/comment v1.4.2 // indirect
246255
github.com/gostaticanalysis/forcetypeassert v0.1.0 // indirect
247256
github.com/gostaticanalysis/nilerr v0.1.1 // indirect
248-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
257+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
249258
github.com/hashicorp/errwrap v1.1.0 // indirect
250259
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
251260
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
@@ -310,15 +319,15 @@ require (
310319
github.com/modern-go/reflect2 v1.0.2 // indirect
311320
github.com/montanaflynn/stats v0.7.1 // indirect
312321
github.com/moricho/tparallel v0.3.2 // indirect
313-
github.com/mozillazg/docker-credential-acr-helper v0.3.0 // indirect
322+
github.com/mozillazg/docker-credential-acr-helper v0.4.0 // indirect
314323
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
315324
github.com/nakabonne/nestif v0.3.1 // indirect
316325
github.com/nishanths/exhaustive v0.12.0 // indirect
317326
github.com/nishanths/predeclared v0.2.2 // indirect
318327
github.com/nozzle/throttler v0.0.0-20180817012639-2ea982251481 // indirect
319328
github.com/nunnatsa/ginkgolinter v0.16.2 // indirect
320329
github.com/oklog/ulid v1.3.1 // indirect
321-
github.com/oleiade/reflections v1.0.1 // indirect
330+
github.com/oleiade/reflections v1.1.0 // indirect
322331
github.com/olekukonko/tablewriter v0.0.5 // indirect
323332
github.com/opencontainers/image-spec v1.1.0 // indirect
324333
github.com/opentracing/opentracing-go v1.2.0 // indirect
@@ -327,9 +336,10 @@ require (
327336
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
328337
github.com/pierrec/lz4/v4 v4.1.21 // indirect
329338
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
339+
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
330340
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
331341
github.com/polyfloyd/go-errorlint v1.6.0 // indirect
332-
github.com/prometheus/client_golang v1.19.1 // indirect
342+
github.com/prometheus/client_golang v1.20.2 // indirect
333343
github.com/prometheus/client_model v0.6.1 // indirect
334344
github.com/prometheus/common v0.55.0 // indirect
335345
github.com/prometheus/procfs v0.15.1 // indirect
@@ -356,7 +366,7 @@ require (
356366
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
357367
github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c // indirect
358368
github.com/shibumi/go-pathspec v1.3.0 // indirect
359-
github.com/sigstore/fulcio v1.5.1 // indirect
369+
github.com/sigstore/fulcio v1.6.3 // indirect
360370
github.com/sigstore/protobuf-specs v0.3.2 // indirect
361371
github.com/sigstore/timestamp-authority v1.2.2 // indirect
362372
github.com/sirupsen/logrus v1.9.3 // indirect
@@ -394,7 +404,7 @@ require (
394404
github.com/uudashr/gocognit v1.1.3 // indirect
395405
github.com/vbatts/tar-split v0.11.5 // indirect
396406
github.com/x448/float16 v0.8.4 // indirect
397-
github.com/xanzy/go-gitlab v0.107.0 // indirect
407+
github.com/xanzy/go-gitlab v0.109.0 // indirect
398408
github.com/xanzy/ssh-agent v0.3.3 // indirect
399409
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
400410
github.com/xdg-go/scram v1.1.2 // indirect
@@ -409,30 +419,34 @@ require (
409419
go-simpler.org/musttag v0.12.2 // indirect
410420
go-simpler.org/sloglint v0.7.2 // indirect
411421
go.mongodb.org/mongo-driver v1.16.1 // indirect
422+
go.opentelemetry.io/contrib/detectors/gcp v1.29.0 // indirect
412423
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect
413424
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.54.0 // indirect
414425
go.opentelemetry.io/otel v1.29.0 // indirect
415426
go.opentelemetry.io/otel/metric v1.29.0 // indirect
427+
go.opentelemetry.io/otel/sdk v1.29.0 // indirect
428+
go.opentelemetry.io/otel/sdk/metric v1.29.0 // indirect
416429
go.opentelemetry.io/otel/trace v1.29.0 // indirect
417-
go.step.sm/crypto v0.51.1 // indirect
430+
go.step.sm/crypto v0.51.2 // indirect
418431
go.uber.org/automaxprocs v1.5.3 // indirect
419432
go.uber.org/multierr v1.11.0 // indirect
420433
golang.org/x/exp/typeparams v0.0.0-20240314144324-c7f7c6466f7f // indirect
421434
golang.org/x/mod v0.21.0 // indirect
422-
golang.org/x/net v0.28.0 // indirect
423-
golang.org/x/oauth2 v0.22.0 // indirect
435+
golang.org/x/net v0.29.0 // indirect
436+
golang.org/x/oauth2 v0.23.0 // indirect
424437
golang.org/x/sync v0.8.0 // indirect
425-
golang.org/x/sys v0.25.0 // indirect
426-
golang.org/x/term v0.24.0 // indirect
427-
golang.org/x/text v0.18.0 // indirect
438+
golang.org/x/sys v0.26.0 // indirect
439+
golang.org/x/term v0.25.0 // indirect
440+
golang.org/x/text v0.19.0 // indirect
428441
golang.org/x/time v0.6.0 // indirect
429442
golang.org/x/tools v0.24.0 // indirect
430443
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect
431444
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
432-
google.golang.org/api v0.196.0 // indirect
445+
google.golang.org/api v0.197.0 // indirect
433446
google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 // indirect
434-
google.golang.org/genproto/googleapis/api v0.0.0-20240827150818-7e3bb234dfed // indirect
447+
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
435448
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
449+
google.golang.org/grpc/stats/opentelemetry v0.0.0-20240907200651-3ffb98b2c93a // indirect
436450
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
437451
gopkg.in/inf.v0 v0.9.1 // indirect
438452
gopkg.in/ini.v1 v1.67.0 // indirect

0 commit comments

Comments
 (0)