Skip to content

chore(deps): update build-tools digest to 5307281 - #1048

Open
red-hat-konflux[bot] wants to merge 1 commit into
masterfrom
konflux/mintmaker/master/build-tools-digest
Open

red-hat-konflux[bot] wants to merge 1 commit into
masterfrom
konflux/mintmaker/master/build-tools-digest

Conversation

@red-hat-konflux

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

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Update Change
build-tools (changelog) digest 7aae40d5307281

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.

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 11, 2026 02:15
@coderabbitai

coderabbitai Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Summary by CodeRabbit

  • Chores
    • Updated the build tooling to a newer version.
    • No user-facing functionality or public API changes.

Walkthrough

The build-tools subproject reference was updated from commit a96ba3d39e112031b7ce93056c6df7e013a4237e to commit 72c2bef5808c5dbbfda833de240a9d9057dc1ebe.

Changes

Build tools update

Layer / File(s) Summary
Update build-tools reference
build-tools
The subproject pointer now references the newer commit.

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

Suggested reviewers: platex-rehor-bot

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description provides a dependency update summary and relevant links, but it does not follow the repository template. It omits the required description format, UI impact statement, screenshots sect… Rewrite the description using the repository template. Include a 2-3 sentence summary, state that no UI is impacted if applicable, complete the screenshots and checklist sections, add the tracked issue link when applicable, and correct the …
✅ Passed checks (4 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 correctly identifies a build-tools dependency digest update. However, the digest db24a1d conflicts with the raw change summary, which identifies the updated commit as 72c2bef.
Full details: Description check

Explanation

The description provides a dependency update summary and relevant links, but it does not follow the repository template. It omits the required description format, UI impact statement, screenshots section, checklist, and issue link information. The referenced digest also conflicts with the raw summary and PR objectives.

Resolution

Rewrite the description using the repository template. Include a 2-3 sentence summary, state that no UI is impacted if applicable, complete the screenshots and checklist sections, add the tracked issue link when applicable, and correct the build-tools digest values so they match the actual change.

  • Fix all pre-merge checks with AI
✨ Finishing Touches 💡 2
⚔️ Resolve merge conflicts 💡
  • Resolve merge conflict in branch konflux/mintmaker/master/build-tools-digest
🛠️ Fix failing CI checks 💡
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch konflux/mintmaker/master/build-tools-digest

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

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

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 `@build-tools`:
- Line 1: Update the build-tools gitlink from revision 72c2bef to
979ac563bf567f96a04e08358538e797f197eeef, preserving the submodule/gitlink
structure.
🪄 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: c7f418fe-655c-40f3-ad41-5d0de551d628

📥 Commits

Reviewing files that changed from the base of the PR and between dbd76ca and 04aed2c.

📒 Files selected for processing (1)
  • build-tools

Comment thread build-tools
@@ -1 +1 @@
Subproject commit a96ba3d39e112031b7ce93056c6df7e013a4237e
Subproject commit 72c2bef5808c5dbbfda833de240a9d9057dc1ebe

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

expected_prefix="979ac56"
actual="$(git ls-tree HEAD build-tools | awk '{print $3}')"
url="$(git config -f .gitmodules --get submodule.build-tools.url)"

case "$actual" in
  "$expected_prefix"*) ;;
  *)
    echo "Expected build-tools to start with $expected_prefix, got $actual" >&2
    exit 1
    ;;
esac

tmp="$(mktemp -d)"
trap 'rm -rf "$tmp"' EXIT

git init -q "$tmp"
git -C "$tmp" remote add origin "$url"
git -C "$tmp" fetch --quiet --depth=1 origin "$actual"
git -C "$tmp" cat-file -e "$actual^{commit}"
git -C "$tmp" cat-file -e "$actual:Dockerfile"

Repository: RedHatInsights/notifications-frontend

Length of output: 264


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "== submodule configuration =="
git config -f .gitmodules --get-regexp '^submodule\.build-tools\.(path|url)$' || true

echo "== checked-in gitlink =="
git ls-tree HEAD build-tools

echo "== references to build-tools and target prefix =="
rg -n -C 2 'build-tools|979ac56|72c2bef' .gitmodules .tekton README.md 2>/dev/null || true

url="$(git config -f .gitmodules --get submodule.build-tools.url)"
tmp="$(mktemp -d)"
trap 'rm -rf "$tmp"' EXIT
git init -q "$tmp"
git -C "$tmp" remote add origin "$url"
git -C "$tmp" fetch --quiet --depth=1 origin 72c2bef5808c5dbbfda833de240a9d9057dc1ebe 979ac56 || true

echo "== fetched commit resolution =="
for sha in 72c2bef5808c5dbbfda833de240a9d9057dc1ebe 979ac56; do
  if git -C "$tmp" cat-file -e "$sha^{commit}" 2>/dev/null; then
    git -C "$tmp" show -s --format='%H%n%P%n%s' "$sha"
    if git -C "$tmp" cat-file -e "$sha:Dockerfile" 2>/dev/null; then
      echo "Dockerfile: present"
      git -C "$tmp" show "$sha:Dockerfile" | sha256sum
    else
      echo "Dockerfile: absent"
    fi
  else
    echo "$sha: not resolved as a commit"
  fi
done

Repository: RedHatInsights/notifications-frontend

Length of output: 2516


🏁 Script executed:

#!/bin/bash
set -euo pipefail

repo="https://api.github.com/repos/RedHatInsights/insights-frontend-builder-common"
for ref in 72c2bef5808c5dbbfda833de240a9d9057dc1ebe 979ac56; do
  echo "== API lookup: $ref =="
  curl -sS -L -H 'Accept: application/vnd.github+json' "$repo/commits/$ref" |
    jq -r 'if .sha then [.sha, .commit.message, .commit.tree.sha] | `@tsv` else [.status, .message] | `@tsv` end'
done

echo "== advertised heads and tags matching either prefix =="
git ls-remote --heads --tags https://github.com/RedHatInsights/insights-frontend-builder-common.git |
  grep -E '72c2bef|979ac56' || true

echo "== recent remote refs =="
git ls-remote --heads --tags https://github.com/RedHatInsights/insights-frontend-builder-common.git |
  tail -n 20

Repository: RedHatInsights/notifications-frontend

Length of output: 2513


🏁 Script executed:

#!/bin/bash
set -euo pipefail

repo="https://api.github.com/repos/RedHatInsights/insights-frontend-builder-common"
old="72c2bef5808c5dbbfda833de240a9d9057dc1ebe"
new="979ac563bf567f96a04e08358538e797f197eeef"
tmp="$(mktemp -d)"
trap 'rm -rf "$tmp"' EXIT

for pair in "old:$old" "new:$new"; do
  name="${pair%%:*}"
  sha="${pair#*:}"
  curl -sS -L -H 'Accept: application/vnd.github+json' \
    "$repo/contents/Dockerfile?ref=$sha" |
    jq -r '.content' | tr -d '\n' | base64 -d > "$tmp/$name.Dockerfile"
  echo "== $name Dockerfile =="
  sha256sum "$tmp/$name.Dockerfile"
  sed -n '1,160p' "$tmp/$name.Dockerfile"
done

echo "== Dockerfile diff =="
diff -u "$tmp/old.Dockerfile" "$tmp/new.Dockerfile" || true

Repository: RedHatInsights/notifications-frontend

Length of output: 8906


Update the build-tools gitlink to 979ac563bf567f96a04e08358538e797f197eeef.

The current gitlink points to 72c2bef. The required revision changes the Node image, installs pnpm, and adds dependency_helpers.sh to the build image.

🤖 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 `@build-tools` at line 1, Update the build-tools gitlink from revision 72c2bef
to 979ac563bf567f96a04e08358538e797f197eeef, preserving the submodule/gitlink
structure.

@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to 979ac56 chore(deps): update build-tools digest to 2112727 Aug 13, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to 2112727 chore(deps): update build-tools digest to 1e388d9 Aug 14, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to 1e388d9 chore(deps): update build-tools digest to c2b53d2 Aug 18, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to c2b53d2 chore(deps): update build-tools digest to f6aa7ce Aug 19, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to f6aa7ce chore(deps): update build-tools digest to 6aad292 Aug 20, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to 6aad292 chore(deps): update build-tools digest to f2be02b Aug 21, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to f2be02b chore(deps): update build-tools digest to b914007 Aug 22, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to b914007 chore(deps): update build-tools digest to 3ed0568 Aug 25, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to 3ed0568 chore(deps): update build-tools digest to 2fbca10 Aug 26, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to 2fbca10 chore(deps): update build-tools digest to 585084b Aug 28, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to 585084b chore(deps): update build-tools digest to c6d2424 Sep 1, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to c6d2424 chore(deps): update build-tools digest to a977db2 Sep 2, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to a977db2 chore(deps): update build-tools digest to a222c7a Sep 3, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to a222c7a chore(deps): update build-tools digest to 7aae40d Sep 4, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to 7aae40d chore(deps): update build-tools digest to 33a6284 Sep 5, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to 33a6284 chore(deps): update build-tools digest to ddf5d51 Sep 8, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to ddf5d51 chore(deps): update build-tools digest to a264c87 Sep 9, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to a264c87 chore(deps): update build-tools digest to db24a1d Sep 10, 2026
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update build-tools digest to db24a1d chore(deps): update build-tools digest to 5307281 Sep 11, 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