Skip to content

chore(deps): bump github.com/tektoncd/triggers from 0.36.0 to 0.37.0 - #3142

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/github.com/tektoncd/triggers-0.37.0
Open

chore(deps): bump github.com/tektoncd/triggers from 0.36.0 to 0.37.0#3142
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/github.com/tektoncd/triggers-0.37.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 18, 2026

Copy link
Copy Markdown
Contributor

Bumps github.com/tektoncd/triggers from 0.36.0 to 0.37.0.

Release notes

Sourced from github.com/tektoncd/triggers's releases.

Tekton Triggers release v0.37.0

Installation one-liner

kubectl apply -f https://infra.tekton.dev/tekton-releases/triggers/previous/v0.37.0/release.yaml

Attestation

The Rekor UUID for this release is 108e9186e8c5677a1a23009a1951f3bd03d8d05e083fa175f2559de39d752ad4f3e71db31cb030b4

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a1a23009a1951f3bd03d8d05e083fa175f2559de39d752ad4f3e71db31cb030b4
rekor-cli get --uuid $REKOR_UUID --format json | jq -r .Attestation | jq .

Verify that all container images in the attestation are in the release file:

RELEASE_FILE=https://infra.tekton.dev/tekton-releases/triggers/previous/v0.37.0/release.yaml
INTERCEPTORS_FILE=https://infra.tekton.dev/tekton-releases/triggers/previous/v0.37.0/interceptors.yaml
REKOR_UUID=108e9186e8c5677a1a23009a1951f3bd03d8d05e083fa175f2559de39d752ad4f3e71db31cb030b4
Obtains the list of images with sha from the attestation
REKOR_ATTESTATION_IMAGES=$(rekor-cli get --uuid "$REKOR_UUID" --format json | jq -r .Attestation | jq -r '.subject[]|.name + ":v0.37.0@sha256:" + .digest.sha256')
Download the release file
curl "$RELEASE_FILE" > release.yaml
curl "$INTERCEPTORS_FILE" >> release.yaml
For each image in the attestation, match it to the release file
for image in $REKOR_ATTESTATION_IMAGES; do
printf $image; grep -q $image release.yaml && echo " ===> ok" || echo " ===> no match";
done

Changes

... (truncated)

Changelog

Sourced from github.com/tektoncd/triggers's changelog.

Tekton Triggers Releases

Release Frequency

Tekton Triggers follows the Tekton community [release policy][release-policy] as follows:

  • Versions are numbered according to semantic versioning: vX.Y.Z
  • A new release is produced on a monthly basis, when enough content is available
  • Four releases a year are chosen for long term support (LTS). All remaining releases are supported for approximately 1 month (until the next release is produced)
    • LTS releases take place in January, April, July and October every year
    • The first Tekton Triggers LTS release will be v0.22.0 in October 2022
    • Releases usually happen towards the middle of the month, but the exact date may vary, depending on week-ends and readiness

Tekton Triggers produces nightly builds, publicly available on gcr.io/tekton-nightly.

Transition Process

Before release v0.22 Tekton Triggers has worked on the basis of an undocumented support period of four months, which will be maintained for the release v0.21.

Release Process

Tekton Triggers releases are made of YAML manifests and container images. Manifests are published to cloud object-storage as well as [GitHub][tekton-triggers-releases]. Container images are signed by [Sigstore][sigstore] via [Tekton Chains][tekton-chains]; signatures can be verified through the [public key][chains-public-key] hosted by the Tekton Chains project.

Releases are automated using [Pipelines-as-Code][pac]. The release PipelineRuns are defined in the [.tekton/][tekton-dir] directory and triggered automatically on release branch creation (initial releases) or via a weekly cron / manual workflow_dispatch (patch releases).

Further documentation available:

  • The Tekton Triggers [release cheat sheet][tekton-releases-docs]
  • [Installing Tekton][tekton-installation]
  • Standard for [release notes][release-notes-standards]

Release

v0.37 (LTS)

  • Latest Release: [v0.37.0][v0-37-0] (2026-08-06) ([docs][v0-37-0-docs], [examples][v0-37-0-examples])

... (truncated)

Commits
  • 72d276a Fix ko build failure due to kodata symlink escaping root
  • d2893b5 Bump ko in publish task
  • 718153b Bump Pipeline to v1.15.0
  • a7eedc6 Bump the all group with 11 updates
  • 82660a6 Update releases.md for v0.36.0
  • 8d9238d Revert pipeline, knative/pkg, and otel bumps to fix e2e crash
  • 791329b Bump the all group across 1 directory with 15 updates
  • 9c9974f Bump github/codeql-action from 4.36.2 to 4.37.6
  • 16ffef5 Ignore otel major/minor updates in dependabot
  • 23d6973 Bump golangci-lint from v2.8.0 to v2.12.2
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
github.com/tektoncd/triggers [< 0.26, > 0.25.1-0.20231222120246-0127ca12341d]

@dependabot dependabot Bot added dependencies Used by dependabot - identifies all PRs created by dependabot kind/misc Categorizes issue or PR as a miscellaneuous one. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. release-note-none Denotes a PR that doesnt merit a release note. labels Aug 18, 2026
@tekton-robot tekton-robot added the size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label Aug 18, 2026

@divyansh42 divyansh42 left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm
/approve

@tekton-robot tekton-robot added the lgtm Indicates that a PR is ready to be merged. label Aug 18, 2026
@tekton-robot

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: divyansh42

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@tekton-robot tekton-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Aug 18, 2026
Bumps [github.com/tektoncd/triggers](https://github.com/tektoncd/triggers) from 0.36.0 to 0.37.0.
- [Release notes](https://github.com/tektoncd/triggers/releases)
- [Changelog](https://github.com/tektoncd/triggers/blob/main/releases.md)
- [Commits](tektoncd/triggers@v0.36.0...v0.37.0)

---
updated-dependencies:
- dependency-name: github.com/tektoncd/triggers
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/github.com/tektoncd/triggers-0.37.0 branch from 0a04bae to f872d1b Compare August 18, 2026 15:48
@tekton-robot

Copy link
Copy Markdown
Contributor

New changes are detected. LGTM label has been removed.

@tekton-robot tekton-robot removed the lgtm Indicates that a PR is ready to be merged. label Aug 18, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. dependencies Used by dependabot - identifies all PRs created by dependabot kind/misc Categorizes issue or PR as a miscellaneuous one. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. release-note-none Denotes a PR that doesnt merit a release note. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants