-
Notifications
You must be signed in to change notification settings - Fork 4.6k
DNM: In progress : Fixed chrome version #36972
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 1 commit
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 |
|---|---|---|
|
|
@@ -224,7 +224,7 @@ jobs: | |
|
|
||
| - uses: browser-actions/setup-chrome@latest | ||
| with: | ||
| chrome-version: stable | ||
| chrome-version: 129 | ||
|
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. 💡 Codebase verification Update Chrome version to latest stable The specified Chrome version (129) is outdated. Update to the latest stable version (130) or use "stable" for automatic updates. chrome-version: stableThis change ensures compatibility with the current test suite and reduces manual version updates. 🔗 Analysis chainVerify Chrome version compatibility The Chrome version has been updated from 'stable' to a specific version '129'. Ensure this version is compatible with our current test suite and CI environment. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Check if Chrome 129 is the latest stable version
latest_stable=$(curl -s https://omahaproxy.appspot.com/all.json | jq -r '.[] | select(.os=="linux") | .versions[] | select(.channel=="stable") | .version' | head -n1)
if [[ "$latest_stable" == "129."* ]]; then
echo "Chrome 129 is the latest stable version."
else
echo "Warning: Chrome 129 is not the latest stable version. Latest stable is $latest_stable"
fi
Length of output: 405 Script: #!/bin/bash
# Fetch and display the JSON structure from Omaha Proxy
curl -s https://omahaproxy.appspot.com/all.json | jq .
Length of output: 113 Script: #!/bin/bash
# Fetch and display the raw JSON structure from Omaha Proxy
curl -s https://omahaproxy.appspot.com/all.json
Length of output: 173 Script: #!/bin/bash
# Fetch and display the latest stable Chrome version from Chromium Dash
latest_stable=$(curl -s https://chromiumdash.appspot.com/fetch_releases?channel=Stable&platform=Linux | jq -r '.[0].version')
if [[ "$latest_stable" == "129."* ]]; then
echo "Chrome 129 is the latest stable version."
else
echo "Warning: Chrome 129 is not the latest stable version. Latest stable is $latest_stable"
fi
Length of output: 217191 |
||
| - run: | | ||
| echo "BROWSER_PATH=$(which chrome)" >> $GITHUB_ENV | ||
|
|
||
|
|
||
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.
🛠️ Refactor suggestion
Consider using a more flexible Chrome version specification.
Explicitly setting Chrome version to 129 might lead to version conflicts in the future. Consider using a more flexible version specification or regularly updating this value to match the latest stable version.
🧰 Tools
🪛 actionlint