Skip to content

Update mcr.microsoft.com/playwright Docker tag to v1.61.0#2100

Open
red-hat-konflux[bot] wants to merge 1 commit into
release-4.19from
konflux/mintmaker/release-4.19/test
Open

Update mcr.microsoft.com/playwright Docker tag to v1.61.0#2100
red-hat-konflux[bot] wants to merge 1 commit into
release-4.19from
konflux/mintmaker/release-4.19/test

Conversation

@red-hat-konflux

@red-hat-konflux red-hat-konflux Bot commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
mcr.microsoft.com/playwright tekton-step-image minor v1.60.0-noblev1.61.0-noble

Configuration

📅 Schedule: Branch creation - Every minute ( * * * * * ) in timezone UTC, 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>
@coderabbitai

coderabbitai Bot commented Jun 17, 2026

Copy link
Copy Markdown
📝 Walkthrough

Walkthrough

The Playwright container image referenced in the Tekton pre-commit pipeline is bumped from v1.60.0-noble to v1.61.0-noble in two task steps: the lint/unit/i18n task and the e2e test task. No other pipeline logic or configuration is changed.

Changes

Playwright Image Version Bump

Layer / File(s) Summary
Playwright image tag update in lint and e2e tasks
.tekton/integration-tests/lightspeed-console-pre-commit.yaml
Updates the mcr.microsoft.com/playwright image from v1.60.0-noble to v1.61.0-noble in both the lint/unit/i18n task step and the e2e test task step.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

A bunny hops through the pipeline lane,
Playwright jumped from sixty to sixty-one,
Two little lines swapped just the same,
Noble images updated, tests can run,
🐇 Version bumped — the work is done! ✨

🚥 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 directly and clearly describes the main change: updating the Playwright Docker image tag from v1.60.0 to v1.61.0, which is the primary alteration in the changeset.
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.

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

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch konflux/mintmaker/release-4.19/test

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

@openshift-ci openshift-ci Bot requested review from JoaoFula and joshuawilson June 17, 2026 16:40
@openshift-ci

openshift-ci Bot commented Jun 17, 2026

Copy link
Copy Markdown

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign joaofula 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

@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/integration-tests/lightspeed-console-pre-commit.yaml:
- Line 149: There is a version mismatch between the Playwright Docker image and
the `@playwright/test` package that will cause browser executable issues. The
Docker image reference uses v1.61.0-noble while the package is pinned to 1.60.0.
Update either the `@playwright/test` package version in package.json to 1.61.0 to
match the Docker image, or revert both Docker image references (on lines 149 and
239) from v1.61.0-noble back to v1.60.0 to match the package version. Ensure the
versions are consistent across all references.
🪄 Autofix (Beta)

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: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: d6b0d519-9a6a-4c1c-b727-2ed0b6981c94

📥 Commits

Reviewing files that changed from the base of the PR and between ff17e02 and 8da44ba.

📒 Files selected for processing (1)
  • .tekton/integration-tests/lightspeed-console-pre-commit.yaml

- name: COMMIT_SHA
value: $(params.commit)
image: mcr.microsoft.com/playwright:v1.60.0-noble
image: mcr.microsoft.com/playwright:v1.61.0-noble

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

for f in package.json package-lock.json pnpm-lock.yaml yarn.lock .tekton/integration-tests/lightspeed-console-pre-commit.yaml; do
  [ -f "$f" ] || continue
  rg -n '"`@playwright/test`"|mcr\.microsoft\.com/playwright' "$f"
done

Repository: openshift/lightspeed-console

Length of output: 282


Align Playwright Docker image version with @playwright/test package.

The repo pins @playwright/test to 1.60.0, but the Docker images in the Tekton pipeline are set to v1.61.0-noble on both lines 149 and 239. Playwright requires matching versions between the Docker image and the test package, or browser executables will not be found. Either bump the package.json version to match the image or keep both image references on v1.60.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/integration-tests/lightspeed-console-pre-commit.yaml at line 149,
There is a version mismatch between the Playwright Docker image and the
`@playwright/test` package that will cause browser executable issues. The Docker
image reference uses v1.61.0-noble while the package is pinned to 1.60.0. Update
either the `@playwright/test` package version in package.json to 1.61.0 to match
the Docker image, or revert both Docker image references (on lines 149 and 239)
from v1.61.0-noble back to v1.60.0 to match the package version. Ensure the
versions are consistent across all references.

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