Skip to content

Commit 6cbd178

Browse files
infernus01tekton-robot
authored andcommitted
Bump tektoncd/pruner from v0.3.4 to v0.3.5
Signed-off-by: Shubham Bhardwaj <shubbhar@redhat.com>
1 parent 2fa1b3c commit 6cbd178

File tree

10 files changed

+905
-24
lines changed

10 files changed

+905
-24
lines changed

components.nightly.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ pipelines-as-code:
2929
version: nightly
3030
pruner:
3131
github: tektoncd/pruner
32-
version: v0.3.4
32+
version: v0.3.5

components.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pipelines-as-code:
1818
version: v0.39.3
1919
pruner:
2020
github: tektoncd/pruner
21-
version: v0.3.4
21+
version: v0.3.5
2222
results:
2323
github: tektoncd/results
2424
version: v0.17.2

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ require (
2222
github.com/stretchr/testify v1.11.1
2323
github.com/tektoncd/pipeline v1.6.0
2424
github.com/tektoncd/plumbing v0.0.0-20250805154627-25448098dea2
25-
github.com/tektoncd/pruner v0.3.4
25+
github.com/tektoncd/pruner v0.3.5
2626
github.com/tektoncd/triggers v0.34.0
2727
go.opencensus.io v0.24.0
2828
go.uber.org/zap v1.27.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2623,8 +2623,8 @@ github.com/tektoncd/pipeline v1.6.0 h1:A+D+jzOVl2QNl/yiNT7csVgBUy2wpz6K6+/D4q5lf
26232623
github.com/tektoncd/pipeline v1.6.0/go.mod h1:5SNoYgRYPQopkv7ApVq5GO3JqPk2AjV+VMMjwBsbJOg=
26242624
github.com/tektoncd/plumbing v0.0.0-20250805154627-25448098dea2 h1:v4UPEbe6MEto5i4ELtiXWBxUAUIAWL5U1DznfPhi4WE=
26252625
github.com/tektoncd/plumbing v0.0.0-20250805154627-25448098dea2/go.mod h1:BC6F3DlZc+wpUT9YcwG9MoSfb4tUiH2olB9xYoIsB4I=
2626-
github.com/tektoncd/pruner v0.3.4 h1:C2M8VtqAwjxFCAhoD97mYypzF/J5ck03/+mme0bHmWQ=
2627-
github.com/tektoncd/pruner v0.3.4/go.mod h1:JbH3IueCWn1rdawvEkM4oyO05lW/ae7GXV4vrUvu4ls=
2626+
github.com/tektoncd/pruner v0.3.5 h1:eQTgnQ56Par9d/6BICsXfTkR0Ybx8c/0QLZeNoJnaYQ=
2627+
github.com/tektoncd/pruner v0.3.5/go.mod h1:JbH3IueCWn1rdawvEkM4oyO05lW/ae7GXV4vrUvu4ls=
26282628
github.com/tektoncd/triggers v0.34.0 h1:CuhG1moThPGEMlxPUcoBDDplJ3FAczzF8MMAjGScRY0=
26292629
github.com/tektoncd/triggers v0.34.0/go.mod h1:iHqwCaS2ElaWt2RuxCbrHNd5lMfRzPxihqEEygkVn1w=
26302630
github.com/thales-e-security/pool v0.0.2 h1:RAPs4q2EbWsTit6tpzuvTFlgFRJ3S8Evf5gtvVDbmPg=

operatorhub/openshift/manifests/bases/openshift-pipelines-operator-rh.clusterserviceversion.template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ spec:
337337
- Tekton Hub (tech-preview): v1.23.6
338338
- Tekton Results: v0.17.2
339339
- Manual Approval Gate (tech-preview): v0.7.0
340-
- Tekton Pruner: v0.3.4
340+
- Tekton Pruner: v0.3.5
341341
342342
## Getting Started
343343

pkg/reconciler/common/releases_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626

2727
const (
2828
VERSION = "0.15.2"
29-
PRUNER_VERSION = "0.3.4"
29+
PRUNER_VERSION = "0.3.5"
3030
)
3131

3232
func TestGetLatestRelease(t *testing.T) {
@@ -50,7 +50,7 @@ func TestListReleases(t *testing.T) {
5050
util.AssertDeepEqual(t, version, expectedVersionList)
5151

5252
// Pruner Versions
53-
expectedPrunerVersions := []string{"0.3.4", "0.3.3", "0.1.0"}
53+
expectedPrunerVersions := []string{"0.3.5", "0.3.4", "0.3.3", "0.1.0"}
5454
version, err = allReleases(&v1alpha1.TektonPruner{})
5555
util.AssertEqual(t, err, nil)
5656
util.AssertDeepEqual(t, version, expectedPrunerVersions)

0 commit comments

Comments
 (0)