From 12a315540310aa458105a6ff8ce1ff16f8986557 Mon Sep 17 00:00:00 2001 From: Tasneem Natshah Date: Sat, 6 Jul 2024 21:41:58 +0300 Subject: [PATCH] Fix google-chrome download path #139 --- .circleci/config.yml | 2 +- .github/workflows/github-actions.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 829c7e6..10e66db 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,7 +44,7 @@ commands: sudo apt-get install libappindicator1 fonts-liberation libgbm1 libgtk-3-0 xdg-utils export CHROME_BIN=/usr/bin/google-chrome CHROME_VERSION="115.0.5790.110-1" - wget http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb + wget https://mirror.cs.uchicago.edu/google-chrome/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb sudo dpkg -i google-chrome-stable_${CHROME_VERSION}_amd64.deb rm google-chrome-stable_${CHROME_VERSION}_amd64.deb diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index f960715..da2a332 100755 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -15,7 +15,7 @@ jobs: - name: Install Chrome run: | CHROME_VERSION="115.0.5790.110-1" - wget https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb + wget https://mirror.cs.uchicago.edu/google-chrome/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb sudo dpkg -i google-chrome-stable_${CHROME_VERSION}_amd64.deb - uses: actions/checkout@v3 @@ -26,8 +26,8 @@ jobs: - name: Run Selenium Standalone server run: | - wget https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.1.0/selenium-server-4.1.2.jar - java -jar selenium-server-4.1.2.jar standalone + wget https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.4.0/selenium-server-4.4.0.jar + java -jar selenium-server-4.4.0.jar standalone - name: Install run: yarn install