We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f88c90a commit dc4aaecCopy full SHA for dc4aaec
.github/actions/common/action.yaml
@@ -10,6 +10,13 @@ runs:
10
sudo apt update
11
sudo apt install -y libxml2-dev libxslt-dev
12
shell: bash
13
+ - name: Enable unprivileged ping sockets
14
+ # actions/runner-images#11614
15
+ if: matrix.platform == 'ubuntu-latest'
16
+ shell: bash
17
+ run: |
18
+ echo 'net.ipv4.ping_group_range = 0 2147483647' | sudo tee -a /etc/sysctl.conf
19
+ sudo sysctl -p
20
- name: Setup Python
21
uses: actions/setup-python@v4
22
with:
0 commit comments