Skip to content

Comments

Bump redhat-services-prod/openshift/boilerplate from image-v8.2.0 to image-v8.3.3 in /build#225

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/docker/build/redhat-services-prod/openshift/boilerplate-image-v8.3.3
Open

Bump redhat-services-prod/openshift/boilerplate from image-v8.2.0 to image-v8.3.3 in /build#225
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/docker/build/redhat-services-prod/openshift/boilerplate-image-v8.3.3

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps redhat-services-prod/openshift/boilerplate from image-v8.2.0 to image-v8.3.3.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary by CodeRabbit

  • Chores
    • Updated base image to a newer version for improved stability and compatibility.

Bumps redhat-services-prod/openshift/boilerplate from image-v8.2.0 to image-v8.3.3.

---
updated-dependencies:
- dependency-name: redhat-services-prod/openshift/boilerplate
  dependency-version: image-v8.3.3
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added area/dependency Issues or PRs related to dependency changes ok-to-test Indicates a non-member PR verified by an org member that is safe to test. labels Feb 23, 2026
@coderabbitai
Copy link

coderabbitai bot commented Feb 23, 2026

Walkthrough

Updated the base Docker image version from image-v8.2.0 to image-v8.3.3 in the builder stage of the Dockerfile, with all subsequent build steps remaining unchanged.

Changes

Cohort / File(s) Summary
Docker Base Image Update
build/Dockerfile
Updated base image tag in builder stage from image-v8.2.0 to image-v8.3.3.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and accurately describes the main change: bumping a Docker base image version from v8.2.0 to v8.3.3 in the /build directory, which matches the file changes.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Stable And Deterministic Test Names ✅ Passed The PR only modifies a Dockerfile to update a Docker base image dependency version and does not include any test code or test name changes.
Test Structure And Quality ✅ Passed The PR only updates a Docker base image tag in build/Dockerfile with no modifications to test code, making the test quality check inapplicable.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch dependabot/docker/build/redhat-services-prod/openshift/boilerplate-image-v8.3.3

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

@openshift-ci openshift-ci bot requested review from Tafhim and charlesgong February 23, 2026 02:53
@openshift-ci
Copy link
Contributor

openshift-ci bot commented Feb 23, 2026

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

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-sigs/prow repository.

@openshift-ci
Copy link
Contributor

openshift-ci bot commented Feb 23, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: dependabot[bot]
Once this PR has been reviewed and has the lgtm label, please assign bmeng for approval. For more information see the Code Review Process.

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

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

🧹 Nitpick comments (1)
build/Dockerfile (1)

1-1: Pin the builder image to an immutable digest.

Tag-based references can drift; pinning ensures reproducible builds and reduces supply‑chain risk. The tag image-v8.3.3 exists and resolves to digest sha256:d113b4e936b903300917ad2f7c61675decf73b3ea49112fe2828ab94b3bd929b.

🧩 Recommended change
-FROM quay.io/redhat-services-prod/openshift/boilerplate:image-v8.3.3 AS builder
+FROM quay.io/redhat-services-prod/openshift/boilerplate:image-v8.3.3@sha256:d113b4e936b903300917ad2f7c61675decf73b3ea49112fe2828ab94b3bd929b AS builder
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@build/Dockerfile` at line 1, Replace the tag-based base image in the FROM
line with the pinned immutable digest to ensure reproducible builds: update the
FROM instruction that currently references
"quay.io/redhat-services-prod/openshift/boilerplate:image-v8.3.3 AS builder" to
use the provided digest
(sha256:d113b4e936b903300917ad2f7c61675decf73b3ea49112fe2828ab94b3bd929b) so the
builder stage always uses the exact same image.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@build/Dockerfile`:
- Line 1: Replace the tag-based base image in the FROM line with the pinned
immutable digest to ensure reproducible builds: update the FROM instruction that
currently references
"quay.io/redhat-services-prod/openshift/boilerplate:image-v8.3.3 AS builder" to
use the provided digest
(sha256:d113b4e936b903300917ad2f7c61675decf73b3ea49112fe2828ab94b3bd929b) so the
builder stage always uses the exact same image.

@codecov-commenter
Copy link

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 66.25%. Comparing base (56d30fc) to head (fb9ad74).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #225   +/-   ##
=======================================
  Coverage   66.25%   66.25%           
=======================================
  Files          23       23           
  Lines        1544     1544           
=======================================
  Hits         1023     1023           
  Misses        445      445           
  Partials       76       76           
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/dependency Issues or PRs related to dependency changes ok-to-test Indicates a non-member PR verified by an org member that is safe to test.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant