action.yml 272 B

12345678910
  1. name: increase-max-open-files-on-macos
  2. runs:
  3. using: composite
  4. steps:
  5. - name: Increase max open files
  6. run: |-
  7. sudo sysctl -w kern.maxfiles=1048576
  8. sudo sysctl -w kern.maxfilesperproc=1048576
  9. sudo launchctl limit maxfiles 1048576
  10. shell: bash