Skip to content

Commit e80f7ec

Browse files
Bump Tekton Pipeline from v0.68.0 to v0.68.1
1 parent c504a16 commit e80f7ec

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
# oldest LTS that exists at the time of our planned next release
7070
- v0.59.5
7171
# newest LTS that exists at the time of our planned next release
72-
- v0.68.0 # RETAIN-COMMENT: TEKTON_NEWEST_LTS
72+
- v0.68.1 # RETAIN-COMMENT: TEKTON_NEWEST_LTS
7373
max-parallel: 4
7474
runs-on: ubuntu-latest
7575
steps:
@@ -149,7 +149,7 @@ jobs:
149149
# oldest LTS that exists at the time of our planned next release
150150
- v0.59.5
151151
# newest LTS that exists at the time of our planned next release
152-
- v0.68.0 # RETAIN-COMMENT: TEKTON_NEWEST_LTS
152+
- v0.68.1 # RETAIN-COMMENT: TEKTON_NEWEST_LTS
153153
max-parallel: 4
154154
runs-on: ubuntu-latest-16-cores
155155
steps:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ZAP_FLAGS ?= --zap-log-level=debug --zap-encoder=console
3636
TEST_NAMESPACE ?= default
3737

3838
# CI: tekton pipelines controller version
39-
TEKTON_VERSION ?= v0.68.0
39+
TEKTON_VERSION ?= v0.68.1
4040

4141
# E2E test flags
4242
TEST_E2E_FLAGS ?= -r -p --randomize-all --timeout=1h --trace --vv

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Shipwright supports any tool that can build container images in Kubernetes clust
3939
- We also require a Tekton installation (v0.59.+). To install the latest LTS release, run:
4040

4141
```bash
42-
kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.68.0/release.yaml
42+
kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.68.1/release.yaml
4343
```
4444

4545
If you are using OpenShift cluster refer [Running on OpenShift](#running-on-openshift) for some more configurations.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616
github.com/prometheus/client_model v0.6.1
1717
github.com/spf13/cobra v1.9.1
1818
github.com/spf13/pflag v1.0.6
19-
github.com/tektoncd/pipeline v0.68.0
19+
github.com/tektoncd/pipeline v0.68.1
2020
go.uber.org/zap v1.27.0
2121
k8s.io/api v0.30.9
2222
k8s.io/apiextensions-apiserver v0.30.9

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,8 @@ github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o
390390
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
391391
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
392392
github.com/stvp/go-udp-testing v0.0.0-20201019212854-469649b16807/go.mod h1:7jxmlfBCDBXRzr0eAQJ48XC1hBu1np4CS5+cHEYfwpc=
393-
github.com/tektoncd/pipeline v0.68.0 h1:bVzj+HbS/NQAPV2CfEW8HZrREm7uagPCzEggyxVTBdc=
394-
github.com/tektoncd/pipeline v0.68.0/go.mod h1:MScUtGGW4VeaNcaNrulmNLBSn14EGTXXKy+kh+YZ8Gg=
393+
github.com/tektoncd/pipeline v0.68.1 h1:/R1qV2ea8BYbhVBNHceDq5SRAGQ8rCc/+0u7SFwG0vk=
394+
github.com/tektoncd/pipeline v0.68.1/go.mod h1:MScUtGGW4VeaNcaNrulmNLBSn14EGTXXKy+kh+YZ8Gg=
395395
github.com/vbatts/tar-split v0.12.1 h1:CqKoORW7BUWBe7UL/iqTVvkTBOF8UvOMKOIZykxnnbo=
396396
github.com/vbatts/tar-split v0.12.1/go.mod h1:eF6B6i6ftWQcDqEn3/iGFRFRo8cBIMSJVOpnNdfTMFA=
397397
github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM=

hack/install-tekton.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
set -eu
1111

12-
TEKTON_VERSION="${TEKTON_VERSION:-v0.68.0}"
12+
TEKTON_VERSION="${TEKTON_VERSION:-v0.68.1}"
1313

1414
TEKTON_HOST="github.com"
1515
TEKTON_HOST_PATH="tektoncd/pipeline/releases/download"

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ github.com/spf13/pflag
459459
# github.com/stoewer/go-strcase v1.3.0
460460
## explicit; go 1.11
461461
github.com/stoewer/go-strcase
462-
# github.com/tektoncd/pipeline v0.68.0
462+
# github.com/tektoncd/pipeline v0.68.1
463463
## explicit; go 1.22.3
464464
github.com/tektoncd/pipeline/internal/artifactref
465465
github.com/tektoncd/pipeline/pkg/apis/config

0 commit comments

Comments
 (0)