chore(deps): update dependency github.com/redhatinsights/konflux-pipelines to v1.74.0 - #1508
Conversation
…lines to v1.71.0 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Summary by CodeRabbit
WalkthroughBoth Tekton PipelineRun configurations now reference Konflux pipeline revision ChangesKonflux pipeline update
Estimated code review effort: 1 (Trivial) | ~2 minutes Mergeability Score: 🟡 Moderate · up to 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: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
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
📒 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 |
There was a problem hiding this comment.
🗄️ 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.
This PR contains the following updates:
v1.70.0→v1.74.0Release Notes
RedHatInsights/konflux-pipelines (github.com/RedHatInsights/konflux-pipelines)
v1.74.0Compare Source
What's Changed
Full Changelog: RedHatInsights/konflux-pipelines@v1.73.0...v1.74.0
v1.73.0Compare Source
What's Changed
Full Changelog: RedHatInsights/konflux-pipelines@v1.72.0...v1.73.0
v1.72.0Compare Source
What's Changed
Full Changelog: RedHatInsights/konflux-pipelines@v1.71.0...v1.72.0
v1.71.0Compare Source
What's Changed
Full Changelog: RedHatInsights/konflux-pipelines@v1.70.0...v1.71.0
Configuration
📅 Schedule: (UTC)
🚦 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.
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.