-
Notifications
You must be signed in to change notification settings - Fork 62
chore: upgrade playwright #1668
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -14,7 +14,7 @@ jobs: | |||||
| if: github.actor != 'dependabot[bot]' | ||||||
| runs-on: ubuntu-latest | ||||||
| container: | ||||||
| image: mcr.microsoft.com/playwright:v1.55.0 | ||||||
| image: mcr.microsoft.com/playwright:v1.59.1 | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Playwright container version mismatches npm package versionHigh Severity The container image is upgraded to Additional Locations (2)Reviewed by Cursor Bugbot for commit 933bd6d. Configure here.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @daniel-graham-amplitude this looks like a valid comment
|
||||||
| image: mcr.microsoft.com/playwright:v1.59.1 | |
| image: mcr.microsoft.com/playwright:v1.55.0 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -48,7 +48,7 @@ jobs: | |||||
| runs-on: ubuntu-latest | ||||||
| needs: [authorize] | ||||||
| container: | ||||||
| image: mcr.microsoft.com/playwright:v1.55.0 | ||||||
| image: mcr.microsoft.com/playwright:v1.59.1 | ||||||
|
||||||
| image: mcr.microsoft.com/playwright:v1.59.1 | |
| image: mcr.microsoft.com/playwright:v1.55.0 |


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The container image was updated to Playwright v1.59.1, but the repo is still pinned to
@playwright/test1.55.0 (package.json:54). In Playwright’s official images, the preinstalled browsers are tied to the image version, so this mismatch can produce inconsistent CI behavior. Consider upgrading@playwright/testto 1.59.1 (and lockfile) or aligning the image tag to 1.55.0.