Skip to content

Bump github.com/tektoncd/chains from 0.26.3 to 0.27.2#2900

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/github.com/tektoncd/chains-0.27.1
Closed

Bump github.com/tektoncd/chains from 0.26.3 to 0.27.2#2900
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/github.com/tektoncd/chains-0.27.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 10, 2026

Copy link
Copy Markdown
Contributor

Bumps github.com/tektoncd/chains from 0.26.3 to 0.27.2.

Release notes

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

Tekton Chains release v0.27.2 "Release v0.27.2"

-Docs @ v0.27.2 -Examples @ v0.27.2

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677a0ff10e5cf17374dc985416b7f8fb979e5fc6a2a065e6e8b92f0444b07ab866f2

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a0ff10e5cf17374dc985416b7f8fb979e5fc6a2a065e6e8b92f0444b07ab866f2
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/chains/previous/v0.27.2/release.yaml
REKOR_UUID=108e9186e8c5677a0ff10e5cf17374dc985416b7f8fb979e5fc6a2a065e6e8b92f0444b07ab866f2
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.27.2@sha256:" + .digest.sha256')
Download the release file
curl -L "$RELEASE_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

Features

... (truncated)

Changelog

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

Tekton Chains Releases

Release Frequency

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

  • Versions are numbered according to semantic versioning: vX.Y.Z
  • At a minimum four LTS release are produced. Additional releases are produced based on availability of new features to be released
  • Four releases a year are chosen for long term support (LTS). All remaining releases are supported for approximately 1 month.
    • The first Tekton Chains LTS release will be v0.13.0 in October 2022

Tekton Chains produces nightly builds, publicly available on ghcr.io/tektoncd/chains/controller-92006fd957c0afd31de6a40b3e33b39f.

Transition Process

Before release v0.13 Tekton Chains has worked on the basis of an undocumented support period, providing patch releases when needed. While transitioning to the new support model, v0.11 and v0.12 will be supported for four months from the initial publishing date.

Release Process

Tekton Chains releases are made of YAML manifests and container images. Manifests are published to cloud object-storage as well as [GitHub][tekton-chains-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.

Further documentation available:

  • The Tekton Chains [release process][tekton-releases-docs]
  • [Installing Tekton][tekton-installation]
  • Standard for [release notes][release-notes-standards]

Backwards Incompatible Changes

In general we aim for new features to be added in a backwards compatible way, but sometimes we will need to make breaking changes. This policy outlines how we will make and communicate these.

NOTE: Tekton Chains is working towards a formal beta release. Until then, all features are technically considered alpha (though we continue to do our best to retain backwards compatibility).

... (truncated)

Commits
  • 80338e0 chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 (#1723)
  • 69f62a9 chore(deps): bump github/codeql-action from 4.36.0 to 4.36.2 (#1720)
  • 020a29a Add migration cleanup for SSA finalizers (#1699)
  • 3fbaa94 Fix duplicate .att/.sig OCI layers for same-digest type hints (#1601)
  • 5f38adb chore(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 (#1683)
  • 9169ea0 chore(deps): bump step-security/harden-runner from 2.19.3 to 2.19.4 (#1682)
  • 0835671 chore(deps): bump github/codeql-action from 4.35.5 to 4.36.0 (#1681)
  • 4bb6198 tekton: automate releases with Pipelines-as-Code (#1656)
  • 4f9ad41 chore: update chains maintainers (#1679)
  • 7a12f22 chore(deps): bump github/codeql-action from 4.35.4 to 4.35.5 (#1678)
  • Additional commits viewable in compare view

@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 Jun 10, 2026
@tekton-robot

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
To complete the pull request process, please assign vdemeester after the PR has been reviewed.
You can assign the PR to them by writing /assign @vdemeester in a comment when ready.

The full list of commands accepted by this bot can be found 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 size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label Jun 10, 2026
@dependabot dependabot Bot force-pushed the dependabot/go_modules/github.com/tektoncd/chains-0.27.1 branch from b0d60ba to a8017cc Compare June 22, 2026 09:09
@tekton-robot tekton-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Jun 22, 2026
@tekton-robot

Copy link
Copy Markdown
Contributor

@dependabot[bot]: rebase

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@dependabot dependabot Bot force-pushed the dependabot/go_modules/github.com/tektoncd/chains-0.27.1 branch from a8017cc to b25a0df Compare June 22, 2026 09:11
@tekton-robot tekton-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Jun 22, 2026
@dependabot dependabot Bot changed the title Bump github.com/tektoncd/chains from 0.26.3 to 0.27.1 Bump github.com/tektoncd/chains from 0.26.3 to 0.27.2 Jul 2, 2026
@dependabot dependabot Bot force-pushed the dependabot/go_modules/github.com/tektoncd/chains-0.27.1 branch 2 times, most recently from 4ca1d0d to 1623090 Compare July 2, 2026 17:52
Bumps [github.com/tektoncd/chains](https://github.com/tektoncd/chains) from 0.26.3 to 0.27.2.
- [Release notes](https://github.com/tektoncd/chains/releases)
- [Changelog](https://github.com/tektoncd/chains/blob/main/releases.md)
- [Commits](tektoncd/chains@v0.26.3...v0.27.2)

---
updated-dependencies:
- dependency-name: github.com/tektoncd/chains
  dependency-version: 0.27.1
  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/chains-0.27.1 branch from 1623090 to 87e1625 Compare July 3, 2026 08:19
@dependabot @github

dependabot Bot commented on behalf of github Jul 3, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #2930.

@dependabot dependabot Bot closed this Jul 3, 2026
@dependabot dependabot Bot deleted the dependabot/go_modules/github.com/tektoncd/chains-0.27.1 branch July 3, 2026 14:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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.

1 participant