File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 7
7
update :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
+ # Starting with Ubuntu 23+, a security feature prevents running Puppeteer
11
+ # by default. It needs to be disabled. Using the "easiest" option, see:
12
+ # https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md
13
+ # https://github.com/puppeteer/puppeteer/pull/13196/files
14
+ - name : Disable AppArmor
15
+ run : echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
16
+
10
17
- name : Checkout repo
11
18
uses : actions/checkout@v4
12
19
Original file line number Diff line number Diff line change 7
7
update :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
+ # Starting with Ubuntu 23+, a security feature prevents running Puppeteer
11
+ # by default. It needs to be disabled. Using the "easiest" option, see:
12
+ # https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md
13
+ # https://github.com/puppeteer/puppeteer/pull/13196/files
14
+ - name : Disable AppArmor
15
+ run : echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
16
+
10
17
- name : Checkout repo
11
18
uses : actions/checkout@v4
12
19
You can’t perform that action at this time.
0 commit comments