From 6a3865776d12813439d176c53c1df4af4d7bd8d0 Mon Sep 17 00:00:00 2001 From: Zoltan Hawryluk Date: Mon, 27 Jan 2025 17:07:18 -0500 Subject: [PATCH] Update push-actions.yml to latest chrome and changed error message in checkHTML.sh to tell GitHub Automated Test users how to fix Chromedriver issues. --- .github/workflows/push-actions.yml | 2 +- bin/checkHTML.sh | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push-actions.yml b/.github/workflows/push-actions.yml index 8174fabc..6ab5d60d 100644 --- a/.github/workflows/push-actions.yml +++ b/.github/workflows/push-actions.yml @@ -52,7 +52,7 @@ jobs: # https://mirror.cs.uchicago.edu/google-chrome/pool/main/g/google-chrome-stable/ run: | apt search '^google-chrome.*' \ - && wget -q -O /tmp/chrome.deb http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_130.0.6723.58-1_amd64.deb \ + && wget -q -O /tmp/chrome.deb https://mirror.cs.uchicago.edu/google-chrome/pool/main/g/google-chrome-stable/google-chrome-stable_132.0.6834.110-1_amd64.deb \ && sudo apt install -y /tmp/chrome.deb --allow-downgrades \ && rm /tmp/chrome.deb - name: Log system details diff --git a/bin/checkHTML.sh b/bin/checkHTML.sh index 90f85252..7216100d 100755 --- a/bin/checkHTML.sh +++ b/bin/checkHTML.sh @@ -86,6 +86,12 @@ If that does not work, you may need to do a global update of @axe-core/cli: sudo npm update -g @axe-core/cli +******************************************************************************** +* NOTE: If you are seeing this message in GitHub Automated Tests, you need to +* update push-actions.yml to ensure the version of Chrome being downloaded there +* matches the one in your package.json +******************************************************************************** + ' 1>&2 exit 1;