We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a50cac7 commit 2cd07ddCopy full SHA for 2cd07dd
.github/workflows/integration.yml
@@ -23,7 +23,15 @@ jobs:
23
- name: Install Ubuntu packages
24
run: |
25
sudo ./utils/searx.sh install packages
26
- sudo apt install firefox
+ # Use APT Firefox rather than Snap
27
+ sudo add-apt-repository -y ppa:mozillateam/ppa
28
+ echo '
29
+ Package: *
30
+ Pin: release o=LP-PPA-mozillateam
31
+ Pin-Priority: 1001
32
+ ' | sudo tee /etc/apt/preferences.d/mozilla-firefox
33
+ sudo apt-get update
34
+ sudo apt-get install -y firefox
35
- name: Set up Python
36
uses: actions/setup-python@v2
37
with:
0 commit comments