Skip to content

chore(deps): update dependency github.com/redhatinsights/konflux-pipelines to v1.74.0 - #1508

Open
red-hat-konflux[bot] wants to merge 1 commit into
masterfrom
konflux/mintmaker/master/github.com-redhatinsights-konflux-pipelines-1.x
Open

red-hat-konflux[bot] wants to merge 1 commit into
masterfrom
konflux/mintmaker/master/github.com-redhatinsights-konflux-pipelines-1.x

Conversation

@red-hat-konflux

@red-hat-konflux red-hat-konflux Bot commented Aug 13, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
github.com/RedHatInsights/konflux-pipelines tekton-annotation minor v1.70.0v1.74.0

Release Notes

RedHatInsights/konflux-pipelines (github.com/RedHatInsights/konflux-pipelines)

v1.74.0

Compare Source

What's Changed

Full Changelog: RedHatInsights/konflux-pipelines@v1.73.0...v1.74.0

v1.73.0

Compare Source

What's Changed

Full Changelog: RedHatInsights/konflux-pipelines@v1.72.0...v1.73.0

v1.72.0

Compare Source

What's Changed

Full Changelog: RedHatInsights/konflux-pipelines@v1.71.0...v1.72.0

v1.71.0

Compare Source

What's Changed

Full Changelog: RedHatInsights/konflux-pipelines@v1.70.0...v1.71.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

…lines to v1.71.0

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux
red-hat-konflux Bot requested a review from a team as a code owner August 13, 2026 04:07
@coderabbitai

coderabbitai Bot commented Aug 13, 2026

Copy link
Copy Markdown

Summary by CodeRabbit

  • Chores
    • Updated the build and validation pipelines to the latest Konflux pipeline version.
    • Applied the update consistently to pull-request and push workflows.

Walkthrough

Both Tekton PipelineRun configurations now reference Konflux pipeline revision v1.71.0 instead of v1.70.0.

Changes

Konflux pipeline update

Layer / File(s) Summary
Update pipeline revision references
.tekton/sources-ui-pull-request.yaml, .tekton/sources-ui-push.yaml
The pull-request and push PipelineRuns now reference Konflux pipeline revision v1.71.0.

Estimated code review effort: 1 (Trivial) | ~2 minutes

Mergeability Score: 🟡 Moderate · up to 87dd9

The dependency update leaves the pull-request pipeline resolving v1.70.0 while the annotation requests v1.71.0, which can cause inconsistent pipeline behavior or failures. Align the resolver revision before merging.

Suggested reviewers: platex-rehor-bot

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Title check ✅ Passed The title identifies the Konflux dependency update, but it states v1.72.0 while the changeset updates the references to v1.71.0.
Description check ✅ Passed The description clearly explains the dependency update and includes release notes and configuration details, making it sufficiently complete for this dependency-only change.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch konflux/mintmaker/master/github.com-redhatinsights-konflux-pipelines-1.x

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.tekton/sources-ui-pull-request.yaml:
- Line 11: Update the spec.pipelineRef resolver revision in the pipeline
configuration from v1.70.0 to v1.71.0 so it matches the
pipelinesascode.tekton.dev/pipeline annotation.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Enterprise

Run ID: 60f38bcc-5cd9-4db4-9815-67c651a4c960

📥 Commits

Reviewing files that changed from the base of the PR and between a96a373 and 87dd9e0.

📒 Files selected for processing (2)
  • .tekton/sources-ui-pull-request.yaml
  • .tekton/sources-ui-push.yaml

pipelinesascode.tekton.dev/max-keep-runs: "3"
pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch == "master"
pipelinesascode.tekton.dev/pipeline: https://github.com/RedHatInsights/konflux-pipelines/raw/v1.70.0/pipelines/platform-ui/docker-build-run-all-tests.yaml
pipelinesascode.tekton.dev/pipeline: https://github.com/RedHatInsights/konflux-pipelines/raw/v1.71.0/pipelines/platform-ui/docker-build-run-all-tests.yaml

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🗄️ Data Integrity & Integration | 🟠 Major | 🏗️ Heavy lift

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

file=".tekton/sources-ui-pull-request.yaml"

if rg -n 'v1\.70\.0' "$file"; then
  echo "Found stale Konflux revision"
  exit 1
fi

rg -n 'v1\.71\.0|pipelineRef|revision' "$file"

curl --fail --silent --show-error -L -o /dev/null \
  "https://github.com/RedHatInsights/konflux-pipelines/raw/v1.71.0/pipelines/platform-ui/docker-build-run-all-tests.yaml"

Repository: RedHatInsights/sources-ui

Length of output: 216


🏁 Script executed:

#!/bin/bash
set -euo pipefail

file=".tekton/sources-ui-pull-request.yaml"

printf '%s\n' '--- relevant YAML ---'
sed -n '1,95p' "$file"

printf '%s\n' '--- revision references ---'
rg -n -C 3 'v1\.(70|71)\.0|pipelineRef|resolver' "$file"

printf '%s\n' '--- referenced pipeline availability ---'
curl --fail --silent --show-error -L -o /dev/null \
  "https://github.com/RedHatInsights/konflux-pipelines/raw/v1.71.0/pipelines/platform-ui/docker-build-run-all-tests.yaml"
echo "v1.71.0 pipeline URL is reachable"

Repository: RedHatInsights/sources-ui

Length of output: 4466


🏁 Script executed:

#!/bin/bash
set -euo pipefail

file=".tekton/sources-ui-pull-request.yaml"

sed -n '1,95p' "$file"
rg -n -C 3 'v1\.(70|71)\.0|pipelineRef|resolver' "$file"

curl --fail --silent --show-error -L -o /dev/null \
  "https://github.com/RedHatInsights/konflux-pipelines/raw/v1.71.0/pipelines/platform-ui/docker-build-run-all-tests.yaml"
echo "v1.71.0 pipeline URL is reachable"

Repository: RedHatInsights/sources-ui

Length of output: 4375


Align the Git resolver revision

spec.pipelineRef still resolves v1.70.0, while the pipeline annotation references v1.71.0. Set the resolver revision at line 78 to v1.71.0.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.tekton/sources-ui-pull-request.yaml at line 11, Update the spec.pipelineRef
resolver revision in the pipeline configuration from v1.70.0 to v1.71.0 so it
matches the pipelinesascode.tekton.dev/pipeline annotation.

@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency github.com/redhatinsights/konflux-pipelines to v1.71.0 chore(deps): update dependency github.com/redhatinsights/konflux-pipelines to v1.72.0 Aug 22, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency github.com/redhatinsights/konflux-pipelines to v1.72.0 chore(deps): update dependency github.com/redhatinsights/konflux-pipelines to v1.73.0 Aug 29, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update dependency github.com/redhatinsights/konflux-pipelines to v1.73.0 chore(deps): update dependency github.com/redhatinsights/konflux-pipelines to v1.74.0 Sep 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants