diff --git a/.github/actions/pin-browsers/action.yml b/.github/actions/pin-browsers/action.yml index 1088a7c53a9e..7c9a2bfe01d9 100644 --- a/.github/actions/pin-browsers/action.yml +++ b/.github/actions/pin-browsers/action.yml @@ -18,6 +18,8 @@ runs: CHROME_VERSION: ${{ inputs.chrome-version }} run: | if [ -n "$CHROME_VERSION" ]; then + sudo apt-get update + sudo apt-get -y install libu2f-udev curl -L "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb" > /tmp/chrome.deb sudo dpkg -i /tmp/chrome.deb unlink /tmp/chrome.deb