Skip to content

Commit 69ae1df

Browse files
chore: update Google Chrome installation in CI workflow (#41332)
Updated the CI workflow to install the latest version of Google Chrome instead of a specific version. This change simplifies the installation process and ensures that the most current version is used for testing. ## Description > [!TIP] > _Add a TL;DR when the description is longer than 500 words or extremely technical (helps the content, marketing, and DevRel team)._ > > _Please also include relevant motivation and context. List any dependencies that are required for this change. Add links to Notion, Figma or any other documents that might be relevant to the PR._ Fixes #`Issue Number` _or_ Fixes `Issue URL` > [!WARNING] > _If no issue exists, please create an issue first, and check with the maintainers if the issue is valid._ ## Automation /ok-to-test tags="" ### 🔍 Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!CAUTION] > If you modify the content in this section, you are likely to disrupt the CI result for your PR. <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No
1 parent 7461f8a commit 69ae1df

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci-test-custom-script.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,12 +254,12 @@ jobs:
254254
chmod a+x ./cypress/setup-test-ci.sh
255255
./cypress/setup-test-ci.sh
256256
257-
- name: Install Google Chrome 129.0.6668.100
257+
- name: Install Google Chrome
258258
run: |
259259
sudo apt-get remove google-chrome-stable
260-
wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_129.0.6668.100-1_amd64.deb
260+
wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
261261
sudo apt-get update
262-
sudo apt-get install -y ./google-chrome-stable_129.0.6668.100-1_amd64.deb
262+
sudo apt-get install -y ./google-chrome-stable_current_amd64.deb
263263
echo "BROWSER_PATH=$(which google-chrome)" >> $GITHUB_ENV
264264
google-chrome --version
265265

0 commit comments

Comments
 (0)