From 8b8afb5e01ac3ee8ddeefb6b782c296c5491fd32 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Tue, 12 Jul 2022 15:26:35 -0700 Subject: [PATCH] temp: rollback firefox to 101 (#46878) * temp: pin firefox to 101 * temp: use sudo --- .github/workflows/cypress.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 5d349011f23..79b0cec57d3 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -98,6 +98,14 @@ jobs: tar -xf client-artifact.tar rm client-artifact.tar + - name: Downgrade Firefox + run: | + curl https://ftp.mozilla.org/pub/firefox/releases/101.0/linux-x86_64/en-US/firefox-101.0.tar.bz2 --output firefox-101.0.tar.bz2 + tar -xjf firefox-101.0.tar.bz2 + sudo mv firefox /opt/ + sudo mv /usr/bin/firefox /usr/bin/firefox_old + sudo ln -s /opt/firefox/firefox /usr/bin/firefox + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # tag=v3 with: