-
Notifications
You must be signed in to change notification settings - Fork 122
chore(deps): update playwright monorepo 1.58.1 #2174
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
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 |
|---|---|---|
|
|
@@ -42,7 +42,7 @@ | |
| runs-on: ${{ inputs.runs-on }} | ||
| permissions: {} | ||
| container: | ||
| image: ${{ inputs.is-web && 'mcr.microsoft.com/playwright:v1.57.0-noble' || null }} | ||
| image: ${{ inputs.is-web && 'mcr.microsoft.com/playwright:v1.58.1-noble' || null }} | ||
|
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. 🧩 Analysis chain🏁 Script executed: git ls-files .github/workflows/workflow-test.ymlRepository: lynx-family/lynx-stack Length of output: 101 🏁 Script executed: cat -n .github/workflows/workflow-test.yml | sed -n '40,50p'Repository: lynx-family/lynx-stack Length of output: 484 🏁 Script executed: # Search for all container image references to understand the pattern used
rg 'image:' .github/workflows/workflow-test.yml -A 1 -B 1Repository: lynx-family/lynx-stack Length of output: 181 🏁 Script executed: # Check if there are any other container images in the repository to see what pattern is used
rg 'image:' .github/workflows/ -A 1 | head -30Repository: lynx-family/lynx-stack Length of output: 238 🌐 Web query:
💡 Result:
Sources: [1] Microsoft Learn (ACR: tagged images mutable by default) (learn.microsoft.com), [2] Microsoft Learn (pull by digest) (learn.microsoft.com), [3] Playwright Docker docs (security notes & recommendations) (playwright.dev) Citations:
Pin the Playwright container image by digest. Line 45 uses a mutable tag reference. Tags can be re-pushed to point to different image content, creating a supply-chain risk. Replace with an immutable digest pin: Example format- image: ${{ inputs.is-web && 'mcr.microsoft.com/playwright:v1.58.1-noble' || null }}
+ image: ${{ inputs.is-web && 'mcr.microsoft.com/playwright@sha256:<digest>' || null }}To find the digest: 🧰 Tools🪛 GitHub Check: zizmor[failure] 45-45: 🤖 Prompt for AI Agents |
||
| env: | ||
| CI: 1 | ||
| TURBO_TELEMETRY_DISABLED: 1 | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Check failure
Code scanning / zizmor
unpinned image references Error